QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#22619 | #2868. Preparing a contest | Suzt_ilymtics# | AC ✓ | 2ms | 3576kb | C++14 | 383b | 2022-03-10 14:08:46 | 2022-04-30 01:27:53 |
Judging History
answer
#include<bits/stdc++.h>
#define LL long long
const int MAXN = 1e5 + 10;
const int mod = 998244353;
int read() {
int s = 0, f = 0;
char ch = getchar();
while(!isdigit(ch)) f |= (ch == '-'), ch = getchar();
while(isdigit(ch)) s = (s << 1) + (s << 3) + (ch ^ 48), ch = getchar();
return f ? -s : s;
}
int main() {
puts("FOI");
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 2ms
memory: 3576kb
input:
output:
FOI
result:
ok