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