| Task: | Karkit |
| Sender: | JuhaniA |
| Submission time: | 2021-10-07 20:06:10 +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 | ACCEPTED | 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
raha = int(input())
nallekarkki_hinta = int(input())
suklaakarkki_hinta = int(input())
debug = True
x = 0;
while True:
if raha >= nallekarkki_hinta and nallekarkki_hinta < suklaakarkki_hinta:
x += 1
raha -= nallekarkki_hinta
if debug: print(f"[DEBUG] Ostettiin nallekarkki, hinnalla {nallekarkki_hinta}, karkkeja ostettu {x}")
elif raha >= suklaakarkki_hinta:
x += 1
raha -= suklaakarkki_hinta
if debug: print(f"[DEBUG] Ostettiin suklaakarkki, hinnalla {suklaakarkki_hinta}, karkkeja ostettu {x}")
else: break
# VASTAUS
print(x)Test details
Test 1
Verdict: WRONG ANSWER
| input |
|---|
| 100 1 1 |
| correct output |
|---|
| 100 |
| user output |
|---|
| [DEBUG] Ostettiin suklaakarkki... Truncated |
Test 2
Verdict: ACCEPTED
| input |
|---|
| 1 100 100 |
| correct output |
|---|
| 0 |
| user output |
|---|
| 0 |
Test 3
Verdict: WRONG ANSWER
| input |
|---|
| 50 2 3 |
| correct output |
|---|
| 25 |
| user output |
|---|
| [DEBUG] Ostettiin nallekarkki,... Truncated |
Test 4
Verdict: WRONG ANSWER
| input |
|---|
| 100 17 3 |
| correct output |
|---|
| 33 |
| user output |
|---|
| [DEBUG] Ostettiin suklaakarkki... Truncated |
Test 5
Verdict: WRONG ANSWER
| input |
|---|
| 5 5 5 |
| correct output |
|---|
| 1 |
| user output |
|---|
| [DEBUG] Ostettiin suklaakarkki... |
