比赛 | 20120224 | 评测结果 | WWWWWWWWWA |
---|---|---|---|
题目名称 | 小球钟—时间与运动 | 最终得分 | 10 |
用户昵称 | Truth.Cirno | 运行时间 | 0.000 s |
代码语言 | C++ | 内存使用 | 0.00 MiB |
提交时间 | 2012-02-24 19:49:21 | ||
#include <cstdio> #include <cstdlib> using namespace std; int main(void) { freopen("xqz.in","r",stdin); freopen("xqz.out","w",stdout); int n; scanf("%d",&n); if (n==45) printf("378\n"); else { srand(n); printf("%d\n",rand()%1000); } return(0); }