QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#620707 | #9320. Find the Easiest Problem | C0pyCat | WA | 0ms | 1500kb | C11 | 162b | 2024-10-07 20:36:35 | 2024-10-07 20:36:37 |
Judging History
answer
#include <stdio.h>
int main()
{
int x = 2022;
int y = 2023;
x = ((x = x < x+y) || (y = y-x>y));
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: 1500kb
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:
1,2023
result:
wrong answer 1st lines differ - expected: 'A', found: '1,2023'