提交记录 10902


用户 题目 状态 得分 用时 内存 语言 代码长度
wys test. 自定义测试 Accepted 100 743.575 ms 39076 KB C++ 347 B
提交时间 评测时间
2019-10-10 15:39:09 2023-09-03 19:37:45
#include <stdio.h>
#include <string.h>
#include <algorithm>

inline unsigned next_int(unsigned x) {
	x ^= x << 13;
	x ^= x >> 17;
	x ^= x << 5;
	return x;
}

const int N = 10000000;

unsigned a[N];

int main() {
	unsigned x = 233;
	for (int i = 0; i < N; i++) {
		x = next_int(x);
		a[i] = x;
	}
	
	std::sort(a, a + N);
	
	printf("%u\n", a[0]);
}

CompilationN/AN/ACompile OKScore: N/A

Testcase #1743.575 ms38 MB + 164 KBAcceptedScore: 100


Judge Duck Online | 评测鸭在线
Server Time: 2026-03-28 18:17:39 | Loaded in 1 ms | Server Status
个人娱乐项目,仅供学习交流使用 | 捐赠