Submission #8525353


Source Code Expand

a,b=map(int,input().split())
if a<=0 and b>=0:
    print('Zero')
elif a>0:
    print('Positive')
else:
    if (b-a+1)%2==0:
        print('Positive')
    else:
        print('Negative')

Submission Info

Submission Time
Task A - Range Product
User ytrjpn
Language PyPy3 (2.4.0)
Score 200
Code Size 194 Byte
Status AC
Exec Time 165 ms
Memory 38384 KB

Judge Result

Set Name Sample Subtask1 All
Score / Max Score 0 / 0 100 / 100 100 / 100
Status
AC × 3
AC × 7
AC × 11
Set Name Test Cases
Sample 0_00.txt, 0_01.txt, 0_02.txt
Subtask1 0_00.txt, 0_01.txt, 0_02.txt, 1_00.txt, 1_01.txt, 1_02.txt, 1_03.txt
All 0_00.txt, 0_01.txt, 0_02.txt, 1_00.txt, 1_01.txt, 1_02.txt, 1_03.txt, 2_00.txt, 2_01.txt, 2_02.txt, 2_03.txt
Case Name Status Exec Time Memory
0_00.txt AC 161 ms 38256 KB
0_01.txt AC 162 ms 38256 KB
0_02.txt AC 160 ms 38256 KB
1_00.txt AC 161 ms 38256 KB
1_01.txt AC 161 ms 38256 KB
1_02.txt AC 161 ms 38256 KB
1_03.txt AC 161 ms 38256 KB
2_00.txt AC 160 ms 38384 KB
2_01.txt AC 160 ms 38256 KB
2_02.txt AC 163 ms 38256 KB
2_03.txt AC 165 ms 38256 KB