QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#620707#9320. Find the Easiest ProblemC0pyCatWA 0ms1500kbC11162b2024-10-07 20:36:352024-10-07 20:36:37

Judging History

你现在查看的是最新测评结果

  • [2024-10-07 20:36:37]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:1500kb
  • [2024-10-07 20:36:35]
  • 提交

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'