Task: | Karkit |
Sender: | Erikoisjaakari |
Submission time: | 2021-10-04 16:40:33 +0300 |
Language: | Python3 (CPython3) |
Status: | READY |
Result: | 0 |
group | verdict | score |
---|---|---|
#1 | WRONG ANSWER | 0 |
test | verdict | time | |
---|---|---|---|
#1 | WRONG ANSWER | 0.02 s | details |
#2 | WRONG ANSWER | 0.02 s | details |
#3 | WRONG ANSWER | 0.02 s | details |
#4 | WRONG ANSWER | 0.02 s | details |
#5 | WRONG ANSWER | 0.02 s | details |
Code
rahaa = int(input()) nallekarkki_hinta = int(input()) suklaakarkki_hinta = int(input()) karkkeja = 0 if nallekarkki_hinta < suklaakarkki_hinta: while nallekarkki_hinta <= rahaa-nallekarkki_hinta: karkkeja += 1 rahaa -= nallekarkki_hinta if suklaakarkki_hinta <= rahaa: karkkeja += 1 rahaa -= suklaakarkki_hinta print(karkkeja, rahaa)
Test details
Test 1
Verdict: WRONG ANSWER
input |
---|
100 1 1 |
correct output |
---|
100 |
user output |
---|
0 100 |
Test 2
Verdict: WRONG ANSWER
input |
---|
1 100 100 |
correct output |
---|
0 |
user output |
---|
0 1 |
Test 3
Verdict: WRONG ANSWER
input |
---|
50 2 3 |
correct output |
---|
25 |
user output |
---|
24 2 |
Test 4
Verdict: WRONG ANSWER
input |
---|
100 17 3 |
correct output |
---|
33 |
user output |
---|
0 100 |
Test 5
Verdict: WRONG ANSWER
input |
---|
5 5 5 |
correct output |
---|
1 |
user output |
---|
0 5 |