CSES - Datatähti 2022 alku - Results
Submission details
Task:Karkit
Sender:Tipu
Submission time:2021-10-06 12:30:59 +0300
Language:CPython3
Status:READY
Result:0
Feedback
groupverdictscore
#10
Test results
testverdicttime
#10.02 sdetails
#20.02 sdetails
#30.02 sdetails
#40.02 sdetails
#50.02 sdetails

Code

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

bigger = 0
if b < a:
    bigger = b
else:
    bigger = a

luku = n/bigger
rounded = round(luku)
print(str(luku) + " " + str(rounded) + " " + str(rounded-luku))
if 0 < (rounded - luku) <= 0.5:
    rounded -= 1 
print(rounded)

Test details

Test 1

Verdict:

input
100
1
1

correct output
100

user output
100.0 100 0.0
100

Test 2

Verdict:

input
1
100
100

correct output
0

user output
0.01 0 -0.01
0

Test 3

Verdict:

input
50
2
3

correct output
25

user output
25.0 25 0.0
25

Test 4

Verdict:

input
100
17
3

correct output
33

user output
33.333333333333336 33 -0.33333...

Test 5

Verdict:

input
5
5
5

correct output
1

user output
1.0 1 0.0
1