/ SeriousOJ /

Record Detail

Runtime Error


  
# Status Time Cost Memory Cost
#1 Runtime Error Traceback (most recent call last): File "foo.py", line 1, in <module> ValueError: invalid literal for int() with base 10: '1 2 3' 14ms 3.02 MiB
#2 Runtime Error Traceback (most recent call last): File "foo.py", line 1, in <module> ValueError: invalid literal for int() with base 10: '10 12 11' 14ms 2.969 MiB

Code

x = int(input())
y = int(input())
z = int(input())

if x%2 == 0:
    print(x)
elif y%2 == 0:
    print(y)
elif z%2 == 0:
    print(z)

Information

Submit By
Type
Submission
Problem
P1232 Parity
Contest
LUCC Presents Kick & Code Intra LU Programming Contest
Language
Python 3 (Python 3.12.3)
Submit At
2025-09-01 06:22:12
Judged At
2025-09-01 06:22:12
Judged By
Score
0
Total Time
14ms
Peak Memory
3.02 MiB