QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#623012 | #5732. Even or Odd | larsotaz | WA | 16ms | 10704kb | Python3 | 214b | 2024-10-09 09:34:27 | 2024-10-09 09:34:28 |
Judging History
answer
def inp(): # For taking integer inputs.
return(int(input()))
i = inp()
if i == 1:
print("Either")
elif i == 2:
print("Odd")
elif i % 2 == 0:
print("Even")
else:
print("Either")
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 11ms
memory: 10704kb
input:
1
output:
Either
result:
ok single line: 'Either'
Test #2:
score: 0
Accepted
time: 12ms
memory: 10576kb
input:
2
output:
Odd
result:
ok single line: 'Odd'
Test #3:
score: 0
Accepted
time: 0ms
memory: 10576kb
input:
3
output:
Either
result:
ok single line: 'Either'
Test #4:
score: 0
Accepted
time: 12ms
memory: 10700kb
input:
4
output:
Even
result:
ok single line: 'Even'
Test #5:
score: 0
Accepted
time: 7ms
memory: 10700kb
input:
5
output:
Either
result:
ok single line: 'Either'
Test #6:
score: -100
Wrong Answer
time: 16ms
memory: 10480kb
input:
6
output:
Even
result:
wrong answer 1st lines differ - expected: 'Odd', found: 'Even'