Submission #865477
Source Code Expand
a, b, c = tuple([ int(x) for x in raw_input().split() ])
def solve(a, b, c):
for line in (a, b, c):
if line % 2 == 0:
return 0
return min(a*b, b*c, c*a)
print solve(a, b, c)
Submission Info
| Submission Time | |
|---|---|
| Task | A - Divide a Cuboid |
| User | monaa2 |
| Language | Python (2.7.6) |
| Score | 200 |
| Code Size | 213 Byte |
| Status | AC |
| Exec Time | 27 ms |
| Memory | 2572 KiB |
Judge Result
| Set Name | Sample | All | ||||
|---|---|---|---|---|---|---|
| Score / Max Score | 0 / 0 | 200 / 200 | ||||
| Status |
|
|
| 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 | AC | 26 ms | 2572 KiB |
| 0_01.txt | AC | 27 ms | 2568 KiB |
| 0_02.txt | AC | 25 ms | 2568 KiB |
| 1_00.txt | AC | 26 ms | 2568 KiB |
| 1_01.txt | AC | 25 ms | 2568 KiB |
| 1_02.txt | AC | 26 ms | 2568 KiB |
| 1_03.txt | AC | 24 ms | 2568 KiB |
| 1_04.txt | AC | 25 ms | 2568 KiB |
| 1_05.txt | AC | 26 ms | 2568 KiB |