QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#623083 | #5732. Even or Odd | Kelivan1 | WA | 15ms | 10640kb | Python3 | 120b | 2024-10-09 10:04:13 | 2024-10-09 10:04:13 |
Judging History
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'