比赛 2025.3.18 评测结果 WWWWWWWWWW
题目名称 奇偶性游戏 最终得分 0
用户昵称 QPY666 运行时间 0.034 s
代码语言 C++ 内存使用 3.37 MiB
提交时间 2025-03-18 21:15:46
显示代码纯文本
#include<bits/stdc++.h>
using namespace std;
long long n,m[20100],a,b,p[20100],o[20100],u,ma;
string s;
int main(){
    freopen("parity.in","r",stdin);
    freopen("parity.out","w",stdout);
    cin>>n>>a;
    for(int x=1;x<=a;x++){
        cin>>s>>b>>u;
    }
    cout<<n;
    return 0;
}