QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#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);
}
详细
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'