Submission #1041204


Source Code Expand

x,y=[int(i) for i in input().split()]

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

Submission Info

Submission Time
Task A - Simple Calculator
User paihu
Language Python (3.4.3)
Score 0
Code Size 246 Byte
Status WA
Exec Time 23 ms
Memory 3064 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 23 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 3064 KB
1_01.txt AC 22 ms 3064 KB
1_02.txt WA 22 ms 3064 KB
1_03.txt WA 22 ms 3064 KB
1_04.txt AC 23 ms 3064 KB
1_05.txt WA 23 ms 3064 KB
1_06.txt AC 23 ms 3064 KB
1_07.txt AC 22 ms 3064 KB
1_08.txt AC 23 ms 3064 KB
1_09.txt AC 23 ms 3064 KB
1_10.txt WA 23 ms 3064 KB