Submission #1043084


Source Code Expand

x, y = map(int, input().split())

if x < y:
    if 0 < x:
        print(y - x)
    elif x < 0 and -x <= y:
        print(y + x + 1)
    else:
        print(-x - y + 1)
else:
    if x < 0:
        print(x - y + 2)
    elif x <= -y:
        print(-y - x + 1)
    else:
        print(y + x + 1)

Submission Info

Submission Time
Task A - Simple Calculator
User hikkyprogramming
Language Python (3.4.3)
Score 0
Code Size 306 Byte
Status WA
Exec Time 23 ms
Memory 3192 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 300
Status
AC × 3
AC × 10
WA × 4
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, 1_06.txt, 1_07.txt, 1_08.txt, 1_09.txt, 1_10.txt
Case Name Status Exec Time Memory
0_00.txt AC 22 ms 3064 KB
0_01.txt AC 23 ms 3064 KB
0_02.txt AC 23 ms 3064 KB
1_00.txt AC 23 ms 3192 KB
1_01.txt WA 23 ms 3064 KB
1_02.txt AC 22 ms 3064 KB
1_03.txt AC 23 ms 3064 KB
1_04.txt WA 23 ms 3064 KB
1_05.txt WA 23 ms 3064 KB
1_06.txt AC 23 ms 3064 KB
1_07.txt AC 23 ms 3064 KB
1_08.txt AC 23 ms 3064 KB
1_09.txt AC 23 ms 3064 KB
1_10.txt WA 22 ms 3064 KB