Task: | Jäätelö |
Sender: | gokuha |
Submission time: | 2017-01-19 15:05:07 +0200 |
Language: | C++ |
Status: | READY |
Result: | 0 |
group | verdict | score |
---|---|---|
#1 | WRONG ANSWER | 0 |
test | verdict | time | |
---|---|---|---|
#1 | WRONG ANSWER | 0.04 s | details |
#2 | WRONG ANSWER | 0.03 s | details |
#3 | WRONG ANSWER | 0.04 s | details |
#4 | WRONG ANSWER | 0.04 s | details |
#5 | WRONG ANSWER | 0.03 s | details |
#6 | WRONG ANSWER | 0.04 s | details |
#7 | WRONG ANSWER | 0.04 s | details |
#8 | WRONG ANSWER | 0.05 s | details |
#9 | WRONG ANSWER | 0.02 s | details |
#10 | WRONG ANSWER | 0.04 s | details |
Code
#include <iostream> #include <vector> using namespace std; int main(){ int n; int x; int a; int maxi=0; cin>>n>>x; vector<int> hinta(n,0); vector<int> massa(n,0); for (int i=0; i<n*2; i++){ cin>>a; if (i%2==0){ hinta[i/2]=a;} else{ massa[(i-1)/2]=a;}} for(int i=0; i<n; i++){ for(int j=0; j<n; j++){ cout<<hinta[i]<<" "<<hinta[j]; if (hinta[i]+hinta[j]<=x and massa[i]+massa[j]>maxi){ maxi=massa[i]+massa[j]; }}} cout<<maxi;}
Test details
Test 1
Verdict: WRONG ANSWER
input |
---|
1 749 88 363 |
correct output |
---|
726 |
user output |
---|
88 88726 |
Test 2
Verdict: WRONG ANSWER
input |
---|
2 902 968 550 152 228 |
correct output |
---|
456 |
user output |
---|
968 968968 152152 968152 15245... |
Test 3
Verdict: WRONG ANSWER
input |
---|
5 295 35 81 653 771 747 823 871 611 ... |
correct output |
---|
162 |
user output |
---|
35 3535 65335 74735 87135 6406... |
Test 4
Verdict: WRONG ANSWER
input |
---|
10 272 38 13 114 420 42 344 942 307 ... |
correct output |
---|
840 |
user output |
---|
38 3838 11438 4238 94238 93838... |
Test 5
Verdict: WRONG ANSWER
input |
---|
50 468 867 254 870 736 28 739 60 609 ... |
correct output |
---|
2000 |
user output |
---|
867 867867 870867 28867 60867 ... |
Test 6
Verdict: WRONG ANSWER
input |
---|
100 739 395 712 476 916 102 614 312 533 ... |
correct output |
---|
1928 |
user output |
---|
395 395395 476395 102395 31239... |
Test 7
Verdict: WRONG ANSWER
input |
---|
100 781 342 898 466 888 713 516 133 389 ... |
correct output |
---|
1894 |
user output |
---|
342 342342 466342 713342 13334... |
Test 8
Verdict: WRONG ANSWER
input |
---|
100 297 423 506 135 31 279 441 362 969 ... |
correct output |
---|
1906 |
user output |
---|
423 423423 135423 279423 36242... |
Test 9
Verdict: WRONG ANSWER
input |
---|
100 875 917 956 243 815 365 575 42 846 ... |
correct output |
---|
1960 |
user output |
---|
917 917917 243917 365917 42917... |
Test 10
Verdict: WRONG ANSWER
input |
---|
100 651 963 307 169 423 172 150 779 998 ... |
correct output |
---|
1970 |
user output |
---|
963 963963 169963 172963 77996... |