Task: | Pussit |
Sender: | |
Submission time: | 2015-08-15 18:37:37 +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.05 s | 1 | details |
#2 | WRONG ANSWER | 0.05 s | 2 | details |
#3 | WRONG ANSWER | 0.05 s | 3 | details |
Compiler report
input/code.cpp: In function 'int main()': input/code.cpp:31:27: warning: statement has no effect [-Wunused-value] if (m >= n - 1) k + 1; ^
Code
#include <iostream> #include <string> #include <vector> #include <algorithm> #include <set> #include <iomanip> #define uint unsigned int #define INF 999999999 #define ll long long #define M 1000000007 #define E 0.0000001 #define N 1024 using namespace std; int main() { int t; cin>>t; for (int i = 0; i < t; i++) { int n, m, k; cin>>n>>m>>k; int ans; int l = m / n; ans = min(l * n, k); if (ans < k) ans += n - (m - ans) + k - ans; int ans2; ans2 = INF; if (m >= n - 1) k + 1; cout<<min(ans, ans2)<<endl; } return 0; } /** 4 14 11 ---- -*** **** **** */
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 6983 ... |
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 999999999 947359015 547470112 ... |