题解 CF1505A【Is it rated - 2】

理论上来说,这道题目我们要用交互。
但是呢,既然是愚人节,
肯定不用
我们尝试输出很多个"\(NO\)"
然后我成功了。
大概只要 \(10\) 个就够了。
代码仅供参考:

/*
Author:Xsmyy
Problem:CF1505A
Date:2021/04/03
*/
#include<bits/stdc++.h>
#define BetterIO ios::sync_with_stdio(false)
using namespace std;
int main(void)
{
	BetterIO;
	#ifndef ONLINE_JUDGE
	freopen("SampleIN.in","r",stdin);
	#else
	#endif
	register int N=10;
	while(N--)puts("NO");
	return 0;
}
posted @ 2021-04-03 12:42  Bushuai_Tang  阅读(88)  评论(0编辑  收藏  举报