QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#620700#9320. Find the Easiest ProblemC0pyCatWA 0ms1496kbC11134b2024-10-07 20:30:302024-10-07 20:30:34

Judging History

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

  • [2024-10-07 20:30:34]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:1496kb
  • [2024-10-07 20:30:30]
  • 提交

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'