QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#620705 | #9320. Find the Easiest Problem | C0pyCat | WA | 0ms | 1512kb | C11 | 295b | 2024-10-07 20:33:27 | 2024-10-07 20:33:30 |
Judging History
answer
#include <stdio.h>
int main()
{
int x = 2023;
int y = 2024;
int z;
for(z=5;z<6;z++){
switch(z){
default: x = --x+y--;
case 6: --x,y++;
case 8: --y,y++;break;
}
}
printf("%d,%d\n",x,y);
return(0);
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 0
Wrong Answer
time: 0ms
memory: 1512kb
input:
2 5 teamA A accepted teamB B rejected teamC A accepted teamB B accepted teamD C accepted 4 teamA A rejected teamB A accepted teamC B accepted teamC B accepted
output:
4045,2024
result:
wrong answer 1st lines differ - expected: 'A', found: '4045,2024'