Submission #865590


Source Code Expand

from sys import stdin                                                                                                                                                
from sys import stdout

A,B,C = stdin.readline().split()

if A%2 == 0 or B%2 == 0 or C%2 == 0 : 
        print 0
        exit()

AB = int(A) * int(B)
BC = int(C) * int(B)
AC = int(A) * int(C)
ABC = AB * int(C)

area = (AB,BC,AC).sort().reverse()[0]
print area

Submission Info

Submission Time
Task A - Divide a Cuboid
User limitimil
Language Python (2.7.6)
Score 0
Code Size 440 Byte
Status RE
Exec Time 26 ms
Memory 2568 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 200
Status
RE × 3
RE × 9
Set Name Test Cases
Sample 0_00.txt, 0_01.txt, 0_02.txt
All 0_00.txt, 0_01.txt, 0_02.txt, 1_00.txt, 1_01.txt, 1_02.txt, 1_03.txt, 1_04.txt, 1_05.txt
Case Name Status Exec Time Memory
0_00.txt RE 25 ms 2568 KB
0_01.txt RE 25 ms 2568 KB
0_02.txt RE 25 ms 2568 KB
1_00.txt RE 25 ms 2568 KB
1_01.txt RE 25 ms 2568 KB
1_02.txt RE 25 ms 2568 KB
1_03.txt RE 26 ms 2568 KB
1_04.txt RE 26 ms 2568 KB
1_05.txt RE 25 ms 2568 KB