Submission #3416116


Source Code Expand

a, b = map(int, input().split())
def judge(a, b):
    if a*b % 2 == 0:
        return "even"
    else:
        return "odd"

print(judge(a,b))

Submission Info

Submission Time
Task PracticeA - Welcome to AtCoder
User shunsukw
Language Python (3.4.3)
Score 0
Code Size 149 Byte
Status RE
Exec Time 17 ms
Memory 2940 KB

Judge Result

Set Name All
Score / Max Score 0 / 100
Status
RE × 7
Set Name Test Cases
All 00_rnd_01.txt, 00_rnd_02.txt, 00_rnd_03.txt, 00_rnd_04.txt, 00_rnd_05.txt, 00_sample_1.txt, 00_sample_2.txt
Case Name Status Exec Time Memory
00_rnd_01.txt RE 16 ms 2940 KB
00_rnd_02.txt RE 17 ms 2940 KB
00_rnd_03.txt RE 16 ms 2940 KB
00_rnd_04.txt RE 17 ms 2940 KB
00_rnd_05.txt RE 17 ms 2940 KB
00_sample_1.txt RE 17 ms 2940 KB
00_sample_2.txt RE 17 ms 2940 KB