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

This is the latest submission verdict.

  • [2024-10-09 09:28:35]
  • Judged
  • Verdict: RE
  • Time: 0ms
  • Memory: 0kb
  • [2024-10-09 09:28:34]
  • Submitted

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: