| Task: | Karkit |
| Sender: | tonero |
| Submission time: | 2021-10-04 12:22:01 +0300 |
| Language: | C++ (C++17) |
| Status: | READY |
| Result: | 0 |
| group | verdict | score |
|---|---|---|
| #1 | WRONG ANSWER | 0 |
| test | verdict | time | |
|---|---|---|---|
| #1 | WRONG ANSWER | 0.01 s | details |
| #2 | ACCEPTED | 0.01 s | details |
| #3 | WRONG ANSWER | 0.01 s | details |
| #4 | ACCEPTED | 0.01 s | details |
| #5 | WRONG ANSWER | 0.01 s | details |
Code
#include <bits/stdc++.h>
using namespace std;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int n,a,b;
cin >> n >> a >> b;
int amax = n/a;
int maxamount = 0;
for (int i = 0; i < amax; i++)
{
int ncur = n;
int amount = 0;
for (int u = 0; u < i; u++)
{
ncur -= a;
amount++;
}
do
{
ncur -= b;
amount++;
}
while(ncur > 0);
amount--;
ncur += b;
if(amount > maxamount) maxamount = amount;
}
cout << maxamount;
flush(std::cout);
}Test details
Test 1
Verdict: WRONG ANSWER
| input |
|---|
| 100 1 1 |
| correct output |
|---|
| 100 |
| user output |
|---|
| 99 |
Test 2
Verdict: ACCEPTED
| input |
|---|
| 1 100 100 |
| correct output |
|---|
| 0 |
| user output |
|---|
| 0 |
Test 3
Verdict: WRONG ANSWER
| input |
|---|
| 50 2 3 |
| correct output |
|---|
| 25 |
| user output |
|---|
| 24 |
Test 4
Verdict: ACCEPTED
| input |
|---|
| 100 17 3 |
| correct output |
|---|
| 33 |
| user output |
|---|
| 33 |
Test 5
Verdict: WRONG ANSWER
| input |
|---|
| 5 5 5 |
| correct output |
|---|
| 1 |
| user output |
|---|
| 0 |
