比赛 东方版NOIP模拟赛 评测结果 AWWWWWWWWW
题目名称 Marisa 最终得分 10
用户昵称 明天 运行时间 0.014 s
代码语言 C++ 内存使用 0.32 MiB
提交时间 2015-10-28 21:45:39
显示代码纯文本
#include <iostream>
#include <cstdio>
#include <cstdlib>
using namespace std;

int t,n;

int main()
{
	freopen("card.in","r",stdin);
	freopen("card.out","w",stdout);
	
	cin>>t;
	while (t--)
	{
		cin>>n;
		if (n==1)
			cout<<0<<endl;
		else if (n==2 || n==3)
			cout<<1<<endl;
		else if (n==4)
			cout<<2<<endl;
		else
			cout<<rand()%10+2<<endl;
	}
	
	return 0;
}