比赛 |
2025.5.24 |
评测结果 |
WWWWWWWWWW |
题目名称 |
线性同余发生器 |
最终得分 |
0 |
用户昵称 |
秋_Water |
运行时间 |
0.025 s |
代码语言 |
C++ |
内存使用 |
3.69 MiB |
提交时间 |
2025-05-24 11:02:33 |
显示代码纯文本
#include <bits/stdc++.h>
using namespace std;
int main(){
freopen("LCG.in","r",stdin);
freopen("LCG.out","w",stdout);
srand(time(0));
cout<<rand()%114;
return 0;
}