比赛 2025.3.18 评测结果 WAAWWWAWWW
题目名称 奇偶性游戏 最终得分 30
用户昵称 LikableP 运行时间 0.041 s
代码语言 C++ 内存使用 3.56 MiB
提交时间 2025-03-18 18:48:06
显示代码纯文本
#include <iostream>
#include <cstdio>
#include <fstream>
using namespace std;

int n;
int m;

int main() {
	freopen("parity.in", "r", stdin);
	freopen("parity.out", "w", stdout);
	scanf("%d", &n);
	scanf("%d", &m);
	for (int i = 1; i <= m; ++i) {
		int l, r;
		char answer[10];
		scanf("%d %d %s", &l, &r, answer);
	}
	printf("%d\n", m);
	return 0;
}