提交记录 29162


用户 题目 状态 得分 用时 内存 语言 代码长度
Saisyc 1000. 测测你的 A+B Time Limit Exceeded 0 10 us 68 KB C++17 248 B
提交时间 评测时间
2026-07-11 00:33:13 2026-07-11 00:33:16
#include <algorithm>
#include <random>

const int n = 10000;
int arr[n];

int plus(int a, int b)
{
	for (int i = 0; i < n; i++) {
		arr[i] = i;
	}
	std::random_device rd;
	std::mt19937 gen(rd());
	std::shuffle(arr, arr + n, gen);

	return a % b;
}

CompilationN/AN/ACompile OKScore: N/A

Testcase #110 us68 KBTime Limit ExceededScore: 0


Judge Duck Online | 评测鸭在线
Server Time: 2026-07-26 11:43:12 | Loaded in 1 ms | Server Status
个人娱乐项目,仅供学习交流使用 | 捐赠