CSES - Datatähti 2022 alku - Results
Submission details
Task:Karkit
Sender:jaaskelainen
Submission time:2021-10-05 20:29:43 +0300
Language:CPython3
Status:READY
Result:0
Feedback
groupverdictscore
#10
Test results
testverdicttime
#10.03 sdetails
#20.02 sdetails
#30.02 sdetails
#40.02 sdetails
#50.02 sdetails

Code

n = int(input(""))
a = int(input(""))
b = int(input(""))

solutions = []

for x in range(int(n/a)+1):
    print("step"+str(x))
    for y in range(int(n/b)+1):
        if((x*a + y*b) <= n):
            solutions.append(x+y)


solutions.sort()
if(len(solutions) == 0):
    print(0)
else:
    print(solutions[-1])

Test details

Test 1

Verdict:

input
100
1
1

correct output
100

user output
step0
step1
step2
step3
step4
...

Test 2

Verdict:

input
1
100
100

correct output
0

user output
step0
0

Test 3

Verdict:

input
50
2
3

correct output
25

user output
step0
step1
step2
step3
step4
...

Test 4

Verdict:

input
100
17
3

correct output
33

user output
step0
step1
step2
step3
step4
...

Test 5

Verdict:

input
5
5
5

correct output
1

user output
step0
step1
1