Submission #7027424


Source Code Expand

num = input().split()
 
n = int(num[0])
y = int(num[1])

m = 0
g = 0
s = 0

flag = False


for i in range(n+1):
    if flag:
        break
    m = i
    
    for e in range(n+1):
        g = e
        
        me = m * 10000
        ge = g * 5000
        
        tmpS =  y - (me+ge)
        
        if (tmpS / 1000) + (m+g) == n and me+ge+tmpS == y and (tmpS / 1000) >= 0:
            flag = True
            ma = m
            ga = g
            if tmpS / 1000 > 0:
                sa = tmpS / 1000
            else: 
                sa = 0
if flag:
    print(ma,ga,sa)
else:
    print(-1,-1,-1)

Submission Info

Submission Time
Task C - Otoshidama
User jyodai
Language Python (3.4.3)
Score 0
Code Size 638 Byte
Status WA
Exec Time 2104 ms
Memory 3064 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 300
Status
AC × 2
WA × 1
TLE × 1
AC × 5
WA × 10
TLE × 9
Set Name Test Cases
Sample a01, a02, a03, a04
All a01, a02, a03, a04, b05, b06, b07, b08, b09, b10, b11, b12, b13, b14, b15, b16, b17, b18, b19, b20, b21, b22, b23, b24
Case Name Status Exec Time Memory
a01 AC 17 ms 3064 KB
a02 AC 17 ms 3064 KB
a03 WA 19 ms 3064 KB
a04 TLE 2103 ms 3064 KB
b05 WA 17 ms 3064 KB
b06 AC 17 ms 3064 KB
b07 AC 17 ms 3064 KB
b08 WA 18 ms 3064 KB
b09 TLE 2103 ms 3064 KB
b10 TLE 2104 ms 3064 KB
b11 TLE 2104 ms 3064 KB
b12 WA 18 ms 3064 KB
b13 WA 20 ms 3064 KB
b14 WA 22 ms 3064 KB
b15 TLE 2104 ms 3064 KB
b16 WA 1980 ms 3064 KB
b17 TLE 2104 ms 3064 KB
b18 WA 17 ms 3064 KB
b19 WA 26 ms 3064 KB
b20 WA 18 ms 3064 KB
b21 TLE 2104 ms 3064 KB
b22 AC 1999 ms 3064 KB
b23 TLE 2104 ms 3064 KB
b24 TLE 2104 ms 3064 KB