比赛 | 20120708 | 评测结果 | WWWWWWWWWW |
---|---|---|---|
题目名称 | 项链制作 | 最终得分 | 0 |
用户昵称 | Citron酱 | 运行时间 | 0.003 s |
代码语言 | C++ | 内存使用 | 0.29 MiB |
提交时间 | 2012-07-08 10:38:19 | ||
#include <cstdio> #include <cstdlib> #define I_F "necklacemn.in" #define O_F "necklacemn.out" int main() { freopen(I_F,"r",stdin); freopen(O_F,"w",stdout); short n; scanf("%hd",&n); srand(n); long ans=rand()*rand()*rand()%1000000007; printf("%ld\n",ans); return 0; }