QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#623083#5732. Even or OddKelivan1WA 15ms10640kbPython3120b2024-10-09 10:04:132024-10-09 10:04:13

Judging History

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

  • [2024-10-09 10:04:13]
  • 评测
  • 测评结果:WA
  • 用时:15ms
  • 内存:10640kb
  • [2024-10-09 10:04:13]
  • 提交

answer

import sys
input = sys.stdin.readline()
num = int(input)

if num == 2:
    print("Odd")
else:
    print("Either")

詳細信息

Test #1:

score: 100
Accepted
time: 10ms
memory: 10584kb

input:

1

output:

Either

result:

ok single line: 'Either'

Test #2:

score: 0
Accepted
time: 13ms
memory: 10604kb

input:

2

output:

Odd

result:

ok single line: 'Odd'

Test #3:

score: 0
Accepted
time: 15ms
memory: 10640kb

input:

3

output:

Either

result:

ok single line: 'Either'

Test #4:

score: -100
Wrong Answer
time: 7ms
memory: 10624kb

input:

4

output:

Either

result:

wrong answer 1st lines differ - expected: 'Even', found: 'Either'