| Task: | Ice cream |
| Sender: | MatVai |
| Submission time: | 2017-01-21 08:07:16 +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.05 s | details |
| #4 | WRONG ANSWER | 0.05 s | details |
| #5 | WRONG ANSWER | 0.04 s | details |
| #6 | WRONG ANSWER | 0.03 s | details |
| #7 | WRONG ANSWER | 0.04 s | details |
| #8 | WRONG ANSWER | 0.04 s | details |
| #9 | WRONG ANSWER | 0.04 s | details |
| #10 | WRONG ANSWER | 0.03 s | details |
Compiler report
input/code.cpp: In function 'int main()':
input/code.cpp:7:15: warning: unused variable 'm' [-Wunused-variable]
int n, x, m=0, ats=0, e=-1, c=0;
^
input/code.cpp:7:33: warning: unused variable 'c' [-Wunused-variable]
int n, x, m=0, ats=0, e=-1, c=0;
^Code
#include <iostream>
using namespace std;
int main()
{
int n, x, m=0, ats=0, e=-1, c=0;
cin >> n >> x;
int S[101], K[101], Vs[10002], Vk[10002];
for(int i = 0; i < n; i++)
{
cin >> S[i] >> K[i];
}
for(int a=0; a<n; a++)
{
for(int i=a; i<n; i++)
{
e++;
Vs[e]=S[a]+S[i];
Vk[e]=K[a]+K[i];
}
}
for (int i=0; i<=e; i++)
{
if(Vk[i]<=x)
{
ats=Vs[i];
}
}
cout << ats-1 ;
return 0;
}
Test details
Test 1
Verdict: WRONG ANSWER
| input |
|---|
| 1 749 88 363 |
| correct output |
|---|
| 726 |
| user output |
|---|
| 175 |
Test 2
Verdict: WRONG ANSWER
| input |
|---|
| 2 902 968 550 152 228 |
| correct output |
|---|
| 456 |
| user output |
|---|
| 303 |
Test 3
Verdict: WRONG ANSWER
| input |
|---|
| 5 295 35 81 653 771 747 823 871 611 ... |
| correct output |
|---|
| 162 |
| user output |
|---|
| 69 |
Test 4
Verdict: WRONG ANSWER
| input |
|---|
| 10 272 38 13 114 420 42 344 942 307 ... |
| correct output |
|---|
| 840 |
| user output |
|---|
| 765 |
Test 5
Verdict: WRONG ANSWER
| input |
|---|
| 50 468 867 254 870 736 28 739 60 609 ... |
| correct output |
|---|
| 2000 |
| user output |
|---|
| 1955 |
Test 6
Verdict: WRONG ANSWER
| input |
|---|
| 100 739 395 712 476 916 102 614 312 533 ... |
| correct output |
|---|
| 1928 |
| user output |
|---|
| 487 |
Test 7
Verdict: WRONG ANSWER
| input |
|---|
| 100 781 342 898 466 888 713 516 133 389 ... |
| correct output |
|---|
| 1894 |
| user output |
|---|
| 9 |
Test 8
Verdict: WRONG ANSWER
| input |
|---|
| 100 297 423 506 135 31 279 441 362 969 ... |
| correct output |
|---|
| 1906 |
| user output |
|---|
| 1881 |
Test 9
Verdict: WRONG ANSWER
| input |
|---|
| 100 875 917 956 243 815 365 575 42 846 ... |
| correct output |
|---|
| 1960 |
| user output |
|---|
| 1715 |
Test 10
Verdict: WRONG ANSWER
| input |
|---|
| 100 651 963 307 169 423 172 150 779 998 ... |
| correct output |
|---|
| 1970 |
| user output |
|---|
| 1709 |
