Task: | Pussit |
Sender: | |
Submission time: | 2015-08-16 00:15:20 +0300 |
Language: | C++ |
Status: | READY |
Result: | 0 |
group | verdict | score |
---|---|---|
#1 | WRONG ANSWER | 0 |
#2 | WRONG ANSWER | 0 |
#3 | WRONG ANSWER | 0 |
test | verdict | time | group | |
---|---|---|---|---|
#1 | WRONG ANSWER | 0.06 s | 1 | details |
#2 | WRONG ANSWER | 0.05 s | 2 | details |
#3 | WRONG ANSWER | 0.19 s | 3 | details |
Compiler report
input/code.cpp: In function 'void solve(LL, LL, LL)': input/code.cpp:13:8: warning: unused variable 'x1' [-Wunused-variable] LL x1 = n - x2; // # bags with floor(m/n) balls ^
Code
#include <iostream> #include <vector> #include <string> #include <set> #include <utility> #include <algorithm> using namespace std; typedef long long LL; void solve(LL n, LL m, LL k){ LL x2 = m % n; // # bags with floor(m/n) + 1 balls LL x1 = n - x2; // # bags with floor(m/n) balls LL d = m/n; //cout << "n m k " << n << " " << m << " " << k << endl; //cout << "x1 x2 d " << x1 << " " << x2 << " " << d << endl; if(k <= d * n){ cout << k << endl; } else{ // Must have at least one miss vector<LL> divs; for(LL i = 1; i < sqrt(m) + 1; i++){ if(m % i == 0){ divs.push_back(i); divs.push_back(m/i); } } sort(divs.begin(), divs.end()); LL best = 1; for(LL div : divs){ if(div <= n) best = div; } cout << n - best + k << endl; } } int main(){ LL cases; cin >> cases; while(cases--){ LL n,m,k; cin >> n >> m >> k; solve(n,m,k); } }
Test details
Test 1
Group: 1
Verdict: WRONG ANSWER
input |
---|
1000 11 16 2 5 16 15 2 14 14 9 11 1 ... |
correct output |
---|
2 15 14 1 1 ... |
user output |
---|
2 15 14 1 1 ... |
Test 2
Group: 2
Verdict: WRONG ANSWER
input |
---|
1000 1436 3023 1378 4419 4559 3881 115 4220 1440 3556 3152 1653 ... |
correct output |
---|
1378 3881 1440 2057 5312 ... |
user output |
---|
1378 3881 1440 2057 5312 ... |
Test 3
Group: 3
Verdict: WRONG ANSWER
input |
---|
1000 337723917 939459738 544279388 233319567 486500388 164139442 722536320 995223331 969580610 274242146 994174001 844564432 ... |
correct output |
---|
544279388 164139442 1194505265 870263078 547470112 ... |
user output |
---|
544279388 164139442 1692079119 1112707351 547470112 ... |