QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#623081#5732. Even or OddKelivan1RE 0ms0kbPython3118b2024-10-09 10:03:122024-10-09 10:03:12

Judging History

你现在查看的是最新测评结果

  • [2024-10-09 10:03:12]
  • 评测
  • 测评结果:RE
  • 用时:0ms
  • 内存:0kb
  • [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

output:


result: