Task: | Karkit |
Sender: | tiittari22 |
Submission time: | 2021-10-04 20:40:51 +0300 |
Language: | Python3 (CPython3) |
Status: | READY |
Result: | 0 |
group | verdict | score |
---|---|---|
#1 | WRONG ANSWER | 0 |
test | verdict | time | |
---|---|---|---|
#1 | WRONG ANSWER | 0.02 s | details |
#2 | WRONG ANSWER | 0.02 s | details |
#3 | WRONG ANSWER | 0.02 s | details |
#4 | WRONG ANSWER | 0.02 s | details |
#5 | WRONG ANSWER | 0.02 s | details |
Code
n = int(input("n: ")) a = int(input("a: ")) b = int(input("b: ")) if n >= a + b: c = n / a r = n % a d = n % b if r <= b: print(round(c)) else: print(r + b) else: print("0")
Test details
Test 1
Verdict: WRONG ANSWER
input |
---|
100 1 1 |
correct output |
---|
100 |
user output |
---|
n: a: b: 100 |
Test 2
Verdict: WRONG ANSWER
input |
---|
1 100 100 |
correct output |
---|
0 |
user output |
---|
n: a: b: 0 |
Test 3
Verdict: WRONG ANSWER
input |
---|
50 2 3 |
correct output |
---|
25 |
user output |
---|
n: a: b: 25 |
Test 4
Verdict: WRONG ANSWER
input |
---|
100 17 3 |
correct output |
---|
33 |
user output |
---|
n: a: b: 18 |
Test 5
Verdict: WRONG ANSWER
input |
---|
5 5 5 |
correct output |
---|
1 |
user output |
---|
n: a: b: 0 |