Task: | Karkit |
Sender: | Totska |
Submission time: | 2021-10-04 15:44:59 +0300 |
Language: | Python3 (PyPy3) |
Status: | READY |
Result: | 0 |
group | verdict | score |
---|---|---|
#1 | WRONG ANSWER | 0 |
test | verdict | time | |
---|---|---|---|
#1 | ACCEPTED | 0.04 s | details |
#2 | ACCEPTED | 0.04 s | details |
#3 | ACCEPTED | 0.04 s | details |
#4 | WRONG ANSWER | 0.04 s | details |
#5 | ACCEPTED | 0.04 s | details |
Code
n = int(input()) a = int(input()) b = int(input()) if a < b: print(int(n / a + (n - (n / a)*a) / b)) elif b > a: print(int(n / b + (n - (n / b) * b) / a)) else: print(int(n / a))
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: WRONG ANSWER
input |
---|
100 17 3 |
correct output |
---|
33 |
user output |
---|
5 |
Test 5
Verdict: ACCEPTED
input |
---|
5 5 5 |
correct output |
---|
1 |
user output |
---|
1 |