QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#623081 | #5732. Even or Odd | Kelivan1 | RE | 0ms | 0kb | Python3 | 118b | 2024-10-09 10:03:12 | 2024-10-09 10:03:12 |
answer
import sys
input = sys.stdin.readline
num = int(input)
if num == 2:
print("Odd")
else:
print("Either")
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 0
Dangerous Syscalls
input:
1