QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#620700 | #9320. Find the Easiest Problem | C0pyCat | WA | 0ms | 1496kb | C11 | 134b | 2024-10-07 20:30:30 | 2024-10-07 20:30:34 |
Judging History
answer
#include <stdio.h>
int main() {
int x = 2022;
int y = 2023;
y = ((x = x < x + y) || (y = y > y - x));
printf("%d %d",x,y);
}
详细
Test #1:
score: 0
Wrong Answer
time: 0ms
memory: 1496kb
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 1
result:
wrong answer 1st lines differ - expected: 'A', found: '1 1'