Task: | Karkit |
Sender: | Parodontax |
Submission time: | 2021-10-04 12:43:58 +0300 |
Language: | C++ (C++11) |
Status: | READY |
Result: | 0 |
group | verdict | score |
---|---|---|
#1 | WRONG ANSWER | 0 |
test | verdict | time | |
---|---|---|---|
#1 | WRONG ANSWER | 0.01 s | details |
#2 | WRONG ANSWER | 0.01 s | details |
#3 | WRONG ANSWER | 0.01 s | details |
#4 | WRONG ANSWER | 0.01 s | details |
#5 | ACCEPTED | 0.01 s | details |
Code
#include <iostream> #include <math.h> using namespace std; int main() { int n, a, b, x; cin >> n >> a >> b; if (a < b) { x = floor(a / n); } else { x = floor(a / b); } cout << x << "\n"; }
Test details
Test 1
Verdict: WRONG ANSWER
input |
---|
100 1 1 |
correct output |
---|
100 |
user output |
---|
1 |
Test 2
Verdict: WRONG ANSWER
input |
---|
1 100 100 |
correct output |
---|
0 |
user output |
---|
1 |
Test 3
Verdict: WRONG ANSWER
input |
---|
50 2 3 |
correct output |
---|
25 |
user output |
---|
0 |
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 |