比赛 20120224 评测结果 WWWWWWWWWW
题目名称 小球钟—时间与运动 最终得分 0
用户昵称 Citron酱 运行时间 0.000 s
代码语言 C++ 内存使用 0.00 MiB
提交时间 2012-02-24 21:24:03
显示代码纯文本
#include <fstream>
#include <cstdlib>
#include <ctime>

int main()
{
	using namespace std;
	srand((unsigned)time(NULL));
	ifstream fin("xqz.in");
	ofstream fout("xqz.out");
	int n;
	fin>>n;
	fout<<(n==45)?378:(rand()%500);
	fin.close();
	fout.close();
}