| Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|---|
| 41187 | LYLAKIOIAKIOI | 【BJ】T2 | C++ | 解答错误 | 0 | 2946 MS | 244 KB | 304 | 2026-04-11 15:40:38 |
#include<bits/stdc++.h> using namespace std; int N=3e8; uint64_t s = N, t = 0; uint64_t next() { s ^= (s << 13); s ^= (s >> 7); s ^= (s << 17); return s; } int main(){ for (int i = 0; i < N; ++i) { s = next(); t += s % N; } cout << t << endl; }