CSES - Datatähti 2022 alku - Results
Submission details
Task:Karkit
Sender:JuhaniA
Submission time:2021-10-07 19:58:44 +0300
Language:CPython3
Status:READY
Result:0
Feedback
groupverdictscore
#10
Test results
testverdicttime
#1ACCEPTED0.02 sdetails
#2ACCEPTED0.02 sdetails
#30.02 sdetails
#40.02 sdetails
#5ACCEPTED0.02 sdetails

Code

raha = int(input())
nallekarkki_hinta = int(input())
suklaakarkki_hinta = int(input())

debug = False
x = 0;

while raha != 0:
    if raha >= nallekarkki_hinta and nallekarkki_hinta > suklaakarkki_hinta:
        raha -= nallekarkki_hinta
        x += 1
        if debug: print(f"[DEBUG] Yksi suklaakarkki ostettu, uusi rahamäärä {raha} & karkkeja ostettu {x}")
    elif raha >= suklaakarkki_hinta:
        raha -= suklaakarkki_hinta
        x += 1
        if debug: print(f"[DEBUG] Yksi nallekarkki ostettu, uusi rahamäärä {raha} & karkkeja ostettu {x}")
    else:
        break

# VASTAUS
print(x)

Test details

Test 1

Verdict: ACCEPTED

input
100
1
1

correct output
100

user output
100

Test 2

Verdict: ACCEPTED

input
1
100
100

correct output
0

user output
0

Test 3

Verdict:

input
50
2
3

correct output
25

user output
16

Test 4

Verdict:

input
100
17
3

correct output
33

user output
10

Test 5

Verdict: ACCEPTED

input
5
5
5

correct output
1

user output
1