Task: | Karkit |
Sender: | Helja |
Submission time: | 2021-10-08 00:29:37 +0300 |
Language: | Python3 (CPython3) |
Status: | READY |
Result: | 100 |
group | verdict | score |
---|---|---|
#1 | ACCEPTED | 100 |
test | verdict | time | |
---|---|---|---|
#1 | ACCEPTED | 0.02 s | details |
#2 | ACCEPTED | 0.02 s | details |
#3 | ACCEPTED | 0.02 s | details |
#4 | ACCEPTED | 0.02 s | details |
#5 | ACCEPTED | 0.02 s | details |
Code
n = int(input()) a = int(input()) b = int(input()) x = int(1) y = int(1) if n < a and n < b: print(0) else: while x*a < n: x += 1 if x*a > n: x -= 1 while y*b < n: y += 1 if y*b > n: y -= 1 if a > b: if (x*a + b) <= n: x += 1 if b > a: if (y*b + a) <= n: y += 1 if x == y: print(x) if x < y: print(y) if y < x: 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: ACCEPTED
input |
---|
50 2 3 |
correct output |
---|
25 |
user output |
---|
25 |
Test 4
Verdict: ACCEPTED
input |
---|
100 17 3 |
correct output |
---|
33 |
user output |
---|
33 |
Test 5
Verdict: ACCEPTED
input |
---|
5 5 5 |
correct output |
---|
1 |
user output |
---|
1 |