记录编号 580937 评测结果 WWWWWWWWWWWWWWWWWWWW
题目名称 [CSP 2022S]策略游戏 最终得分 0
用户昵称 Gravatarhnzzlza 是否通过 未通过
代码语言 C++ 运行时间 0.139 s
提交时间 2023-07-27 16:30:38 内存使用 2.51 MiB
显示代码纯文本
#include<bits/stdc++.h>
using namespace std;
int n,m,q;string s;
int main(){
  freopen("csp2022_game.in","r",stdin);
  freopen("csp2022_game.out","w",stdout);
	cin>>n>>m>>q;
	getline(cin,s);
	getline(cin,s);
	for(int i=1;i<=q;++i)printf("NO\n");
	return 0;
}