Task: | Pizzat |
Sender: | juhoj |
Submission time: | 2024-11-08 20:25:33 +0200 |
Language: | Python3 (CPython3) |
Status: | READY |
Result: | 0 |
group | verdict | score |
---|---|---|
#1 | RUNTIME ERROR | 0 |
test | verdict | time | |
---|---|---|---|
#1 | ACCEPTED | 0.02 s | details |
#2 | RUNTIME ERROR | 0.02 s | details |
#3 | RUNTIME ERROR | 0.02 s | details |
#4 | WRONG ANSWER | 0.02 s | details |
#5 | ACCEPTED | 0.02 s | details |
#6 | RUNTIME ERROR | 0.02 s | details |
#7 | ACCEPTED | 0.02 s | details |
#8 | WRONG ANSWER | 0.02 s | details |
#9 | ACCEPTED | 0.02 s | details |
#10 | ACCEPTED | 0.02 s | details |
#11 | WRONG ANSWER | 0.02 s | details |
#12 | WRONG ANSWER | 0.02 s | details |
#13 | ACCEPTED | 0.02 s | details |
Code
syote = input('').split(' ') henkilot = int(syote[0]) pizzat = int(syote[1]) palatPerPizza = int(syote[2]) palat = pizzat * palatPerPizza tasaisinMahdollien = round((palat / henkilot) - 0) yhdenHenkilonPalat = palat - (tasaisinMahdollien * (henkilot - 1)) muidenPalatYht = palat - yhdenHenkilonPalat muidenPalatPerHlo = muidenPalatYht / (henkilot - 1) #muutHlot = tasaisinMahdollien * (henkilot - 1) #palatJaljella = palat - muutHlot #yksiSaa = palat - muutHlot #print(f"{muutHlot} + {yksiSaa} = {palat}") print (int(yhdenHenkilonPalat), int(muidenPalatPerHlo))
Test details
Test 1
Verdict: ACCEPTED
input |
---|
3 2 4 |
correct output |
---|
2 3 |
user output |
---|
2 3 |
Test 2
Verdict: RUNTIME ERROR
input |
---|
1 1 1 |
correct output |
---|
1 1 |
user output |
---|
(empty) |
Error:
Traceback (most recent call last): File "/box/input/code.py", line 18, in <module> muidenPalatPerHlo = muidenPalatYht / (henkilot - 1) ZeroDivisionError: division by zero
Test 3
Verdict: RUNTIME ERROR
input |
---|
1 1 2 |
correct output |
---|
2 2 |
user output |
---|
(empty) |
Error:
Traceback (most recent call last): File "/box/input/code.py", line 18, in <module> muidenPalatPerHlo = muidenPalatYht / (henkilot - 1) ZeroDivisionError: division by zero
Test 4
Verdict: WRONG ANSWER
input |
---|
2 1 1 |
correct output |
---|
0 1 |
user output |
---|
1 0 |
Test 5
Verdict: ACCEPTED
input |
---|
2 5 7 |
correct output |
---|
17 18 |
user output |
---|
17 18 |
Test 6
Verdict: RUNTIME ERROR
input |
---|
1 1000 1000 |
correct output |
---|
1000000 1000000 |
user output |
---|
(empty) |
Error:
Traceback (most recent call last): File "/box/input/code.py", line 18, in <module> muidenPalatPerHlo = muidenPalatYht / (henkilot - 1) ZeroDivisionError: division by zero
Test 7
Verdict: ACCEPTED
input |
---|
1000 1000 1000 |
correct output |
---|
1000 1000 |
user output |
---|
1000 1000 |
Test 8
Verdict: WRONG ANSWER
input |
---|
1000 1 1 |
correct output |
---|
0 1 |
user output |
---|
1 0 |
Test 9
Verdict: ACCEPTED
input |
---|
997 995 997 |
correct output |
---|
995 995 |
user output |
---|
995 995 |
Test 10
Verdict: ACCEPTED
input |
---|
997 994 997 |
correct output |
---|
994 994 |
user output |
---|
994 994 |
Test 11
Verdict: WRONG ANSWER
input |
---|
997 996 995 |
correct output |
---|
994 995 |
user output |
---|
996 994 |
Test 12
Verdict: WRONG ANSWER
input |
---|
997 996 996 |
correct output |
---|
995 996 |
user output |
---|
996 995 |
Test 13
Verdict: ACCEPTED
input |
---|
997 995 499 |
correct output |
---|
497 498 |
user output |
---|
497 498 |