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