QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#622997#5732. Even or OddAwesom3ericRE 0ms0kbPython3106b2024-10-09 09:28:342024-10-09 09:28:35

Judging History

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

  • [2024-10-09 09:28:35]
  • 评测
  • 测评结果:RE
  • 用时:0ms
  • 内存:0kb
  • [2024-10-09 09:28:34]
  • 提交

answer

n = input()
if n == 1:
    print("Either")
elif n % 2 == 0:
    print("Odd")
else:
    print("Even")

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 0
Dangerous Syscalls

input:

1

output:


result: