Submission #2119884


Source Code Expand

n500 = int(input())
n100 = int(input())
n50 = int(input())
X=int(input())
count = 0
for i500 in range(n500+1):
    for i100 in range(n100+1):
        for i50 in range(n50+1):
            if i500*500+i100*100+i50*50==X:
                count+=1
print(count)

Submission Info

Submission Time
Task A - Buying Sweets
User eiya
Language Python (3.4.3)
Score 0
Code Size 268 Byte
Status RE
Exec Time 17 ms
Memory 3060 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 100
Status
RE × 4
RE × 10
Set Name Test Cases
Sample sample01.txt, sample02.txt, sample03.txt, sample04.txt
All 01.txt, 02.txt, 03.txt, 04.txt, 05.txt, 06.txt, sample01.txt, sample02.txt, sample03.txt, sample04.txt
Case Name Status Exec Time Memory
01.txt RE 17 ms 2940 KB
02.txt RE 17 ms 2936 KB
03.txt RE 17 ms 2940 KB
04.txt RE 17 ms 2940 KB
05.txt RE 17 ms 2940 KB
06.txt RE 17 ms 3060 KB
sample01.txt RE 17 ms 2940 KB
sample02.txt RE 17 ms 2940 KB
sample03.txt RE 17 ms 2940 KB
sample04.txt RE 17 ms 2940 KB