| 比赛 | 20121106 | 评测结果 | WWWWWWWAWWWWWWW |
|---|---|---|---|
| 题目名称 | 二十一点 | 最终得分 | 6 |
| 用户昵称 | QhelDIV | 运行时间 | 0.004 s |
| 代码语言 | C++ | 内存使用 | 7.10 MiB |
| 提交时间 | 2012-11-06 11:36:01 | ||
#include <fstream>
#include <cstdlib>
using namespace std;
ifstream fin("jack.in");
ofstream fout("jack.out");
int stat[1001][1001],N,A[1001],start;
int main()
{
fin>>N;
srand(N);
fout<<rand()%10<<endl;
fin.close();
fout.close();
return 0;
}