QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#812541#2895. 自白书Fake_Jowaire#AC ✓0ms3492kbC++14316b2024-12-13 16:32:382024-12-13 16:32:42

Judging History

你现在查看的是最新测评结果

  • [2024-12-13 16:32:42]
  • 评测
  • 测评结果:AC
  • 用时:0ms
  • 内存:3492kb
  • [2024-12-13 16:32:38]
  • 提交

answer

# include <bits/stdc++.h>

const int N=100010,INF=0x3f3f3f3f;

inline int read(void){
	int res,f=1;
	char c;
	while((c=getchar())<'0'||c>'9')
		if(c=='-') f=-1;
	res=c-48;
	while((c=getchar())>='0'&&c<='9')
		res=res*10+c-48;
	return res*f;
}


int main(void){
	puts("kecheng");


	return 0;
}

詳細信息

Test #1:

score: 100
Accepted
time: 0ms
memory: 3492kb

input:

Remember me, and help us

output:

kecheng

result:

ok single line: 'kecheng'