比赛 | CSP2022普及组 | 评测结果 | WWWWWWWWWW |
---|---|---|---|
题目名称 | 解密 | 最终得分 | 0 |
用户昵称 | no | 运行时间 | 0.711 s |
代码语言 | C++ | 内存使用 | 0.00 MiB |
提交时间 | 2022-10-29 17:53:33 | ||
#include<bits/stdc++.h> using namespace std; int a;int x,y,z; int main(){ freopen("csp2022pj_decode.in","r",stdin); freopen("csp2022pj_decode.out","w",stdout); cin>>a; for(int i=1;i<=a;i++){ cin>>x>>y>>z; } for(int i=1;i<=a;i++){ cout<<"NO"<<endl; } return 0; }