QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#623092 | #5732. Even or Odd | Kelivan1 | WA | 15ms | 10712kb | Python3 | 225b | 2024-10-09 10:07:34 | 2024-10-09 10:07:34 |
Judging History
answer
import sys
input = sys.stdin.readline()
num = int(input)
if num == 2:
print("Odd")
elif num == 4:
print("Even")
elif num == 6:
print("Even")
elif num == 8:
print("Even")
else:
print("Either")
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 10ms
memory: 10712kb
input:
1
output:
Either
result:
ok single line: 'Either'
Test #2:
score: 0
Accepted
time: 11ms
memory: 10524kb
input:
2
output:
Odd
result:
ok single line: 'Odd'
Test #3:
score: 0
Accepted
time: 15ms
memory: 10608kb
input:
3
output:
Either
result:
ok single line: 'Either'
Test #4:
score: 0
Accepted
time: 11ms
memory: 10712kb
input:
4
output:
Even
result:
ok single line: 'Even'
Test #5:
score: 0
Accepted
time: 8ms
memory: 10580kb
input:
5
output:
Either
result:
ok single line: 'Either'
Test #6:
score: -100
Wrong Answer
time: 4ms
memory: 10636kb
input:
6
output:
Even
result:
wrong answer 1st lines differ - expected: 'Odd', found: 'Even'