首页 > 其他 > 详细

题解 CF1505A【Is it rated - 2】

时间:2021-04-03 20:38:25      阅读:76      评论:0      收藏:0      [点我收藏+]

理论上来说,这道题目我们要用交互。
但是呢,既然是愚人节,
肯定不用
我们尝试输出很多个"\(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;
}

题解 CF1505A【Is it rated - 2】

原文:https://www.cnblogs.com/Xsmyy/p/14613541.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!