提交记录 27490


用户 题目 状态 得分 用时 内存 语言 代码长度
ppip test. 自定义测试 Accepted 100 139.836 ms 9556 KB C++ 556 B
提交时间 评测时间
2024-12-17 15:54:18 2024-12-17 15:54:21
#include <bits/stdc++.h>
using namespace std;
constexpr int Spp{1<<20};
char buf[Spp],*p1,*p2;
#define getchar() (p1==p2&&(p2=(p1=buf)+fread(buf,1,Spp,stdin),p1==p2)?EOF:*p1++)
template <typename T>
void read(T &x) {
	char c;int f{1};
	do x=(c=getchar())^48;
	while (!isdigit(c)&&c!='-');
	if (x==29) f=-1,x=0;
	while (isdigit(c=getchar()))
		x=(x*10)+(c^48);
	x*=f;
}
template <typename T,typename ...Args>
void read(T& x,Args&... args) {read(x);read(args...);}
int main() {
	mt19937 rnd(0xb6e0);
	for (int i{0};i<1e6;++i) printf("%u",rnd());
	return 0;
}

CompilationN/AN/ACompile OKScore: N/A

Testcase #1139.836 ms9 MB + 340 KBAcceptedScore: 100


Judge Duck Online | 评测鸭在线
Server Time: 2025-04-20 10:02:17 | Loaded in 1 ms | Server Status
个人娱乐项目,仅供学习交流使用 | 捐赠