| Task: | 3-sum |
| Sender: | toothfairy |
| Submission time: | 2020-09-02 22:07:15 +0300 |
| Language: | C++ (C++11) |
| Status: | READY |
| Result: | RUNTIME ERROR |
| test | verdict | time | |
|---|---|---|---|
| #1 | RUNTIME ERROR | 0.01 s | details |
| #2 | RUNTIME ERROR | 0.01 s | details |
| #3 | RUNTIME ERROR | 0.01 s | details |
| #4 | RUNTIME ERROR | 0.01 s | details |
| #5 | RUNTIME ERROR | 0.01 s | details |
| #6 | RUNTIME ERROR | 0.01 s | details |
| #7 | RUNTIME ERROR | 0.01 s | details |
| #8 | RUNTIME ERROR | 0.01 s | details |
| #9 | RUNTIME ERROR | 0.01 s | details |
| #10 | RUNTIME ERROR | 0.01 s | details |
| #11 | RUNTIME ERROR | 0.01 s | details |
| #12 | RUNTIME ERROR | 0.01 s | details |
| #13 | RUNTIME ERROR | 0.01 s | details |
| #14 | RUNTIME ERROR | 0.01 s | details |
| #15 | RUNTIME ERROR | 0.01 s | details |
| #16 | RUNTIME ERROR | 0.01 s | details |
| #17 | RUNTIME ERROR | 0.01 s | details |
| #18 | RUNTIME ERROR | 0.01 s | details |
| #19 | RUNTIME ERROR | 0.01 s | details |
| #20 | RUNTIME ERROR | 0.01 s | details |
| #21 | RUNTIME ERROR | 0.01 s | details |
| #22 | RUNTIME ERROR | 0.01 s | details |
| #23 | RUNTIME ERROR | 0.01 s | details |
| #24 | RUNTIME ERROR | 0.01 s | details |
| #25 | RUNTIME ERROR | 0.01 s | details |
| #26 | RUNTIME ERROR | 0.01 s | details |
| #27 | RUNTIME ERROR | 0.01 s | details |
| #28 | RUNTIME ERROR | 0.01 s | details |
Code
#include <iostream>
#include <algorithm>
using namespace std;
int main(void) {
long n;
cin >> n;
// if (n < 1) {
// return 0;
// }
long arr[n];
long top[3];
for (int i = 0; i < n; i++) {
cin >> arr[i];
}
sort(arr, arr+3);
top[0] = arr[0];
top[1] = arr[1];
top[2] = arr[2];
// cout << top[0] << " " << top[1] << " " <<top[2] << endl;
if(n > 3 ) {
for (int j = 3; j < n; j ++){
if(arr[j] > top[2]) {
top[0] = top[1];
top[1] = top[2];
top[2] = arr[j];
} else if (arr[j] > top[1] && arr[j] < top[2]) {
top[0] = top[1];
top[1] = arr[j];
} else if (arr[j] > top[0] && arr[j] < top[1] && arr[j] < top[2]) {
top[0] = arr[j];
}
}
}
// cout << top[0] << " " << top[1] << " " <<top[2] << endl;
return top[0] + top[1] + top[2];
}Test details
Test 1
Verdict: RUNTIME ERROR
| input |
|---|
| 3 -702 391 288 |
| correct output |
|---|
| -702 391 288 |
| user output |
|---|
| (empty) |
Test 2
Verdict: RUNTIME ERROR
| input |
|---|
| 3 -609 886 -448 |
| correct output |
|---|
| -609 886 -448 |
| user output |
|---|
| (empty) |
Test 3
Verdict: RUNTIME ERROR
| input |
|---|
| 3 484 -459 605 |
| correct output |
|---|
| 484 -459 605 |
| user output |
|---|
| (empty) |
Test 4
Verdict: RUNTIME ERROR
| input |
|---|
| 10 491 934 -395 -873 -822 447 -90... |
| correct output |
|---|
| 491 934 447 |
| user output |
|---|
| (empty) |
Test 5
Verdict: RUNTIME ERROR
| input |
|---|
| 10 -293 853 267 -762 -647 843 35 ... |
| correct output |
|---|
| 853 843 744 |
| user output |
|---|
| (empty) |
Test 6
Verdict: RUNTIME ERROR
| input |
|---|
| 10 -389 -908 441 187 993 -68 -593... |
| correct output |
|---|
| 441 187 993 |
| user output |
|---|
| (empty) |
Test 7
Verdict: RUNTIME ERROR
| input |
|---|
| 4 -195 251 -11 423 |
| correct output |
|---|
| 251 -11 423 |
| user output |
|---|
| (empty) |
Test 8
Verdict: RUNTIME ERROR
| input |
|---|
| 4 -522 -222 -909 294 |
| correct output |
|---|
| -522 -222 294 |
| user output |
|---|
| (empty) |
Test 9
Verdict: RUNTIME ERROR
| input |
|---|
| 4 141 764 -262 3 |
| correct output |
|---|
| 141 764 3 |
| user output |
|---|
| (empty) |
Test 10
Verdict: RUNTIME ERROR
| input |
|---|
| 5 669 -567 -224 160 194 |
| correct output |
|---|
| 669 160 194 |
| user output |
|---|
| (empty) |
Test 11
Verdict: RUNTIME ERROR
| input |
|---|
| 5 294 783 -60 -637 126 |
| correct output |
|---|
| 294 783 126 |
| user output |
|---|
| (empty) |
Test 12
Verdict: RUNTIME ERROR
| input |
|---|
| 5 -941 391 -339 -982 808 |
| correct output |
|---|
| 391 -339 808 |
| user output |
|---|
| (empty) |
Test 13
Verdict: RUNTIME ERROR
| input |
|---|
| 11 726 997 -588 -186 465 472 -865... |
| correct output |
|---|
| 726 997 472 |
| user output |
|---|
| (empty) |
Test 14
Verdict: RUNTIME ERROR
| input |
|---|
| 11 -346 950 -522 106 278 265 531 ... |
| correct output |
|---|
| 950 531 678 |
| user output |
|---|
| (empty) |
Test 15
Verdict: RUNTIME ERROR
| input |
|---|
| 11 633 -52 -771 449 409 684 -516 ... |
| correct output |
|---|
| 633 449 684 |
| user output |
|---|
| (empty) |
Test 16
Verdict: RUNTIME ERROR
| input |
|---|
| 57 714 -738 -127 -549 613 11 263 ... |
| correct output |
|---|
| 880 887 947 |
| user output |
|---|
| (empty) |
Test 17
Verdict: RUNTIME ERROR
| input |
|---|
| 57 -599 -338 -960 581 -979 -85 -1... |
| correct output |
|---|
| 830 988 852 |
| user output |
|---|
| (empty) |
Test 18
Verdict: RUNTIME ERROR
| input |
|---|
| 57 -346 -990 -893 -109 876 438 -5... |
| correct output |
|---|
| 876 910 885 |
| user output |
|---|
| (empty) |
Test 19
Verdict: RUNTIME ERROR
| input |
|---|
| 99 621 189 655 890 -48 -440 276 6... |
| correct output |
|---|
| 945 962 994 |
| user output |
|---|
| (empty) |
Test 20
Verdict: RUNTIME ERROR
| input |
|---|
| 99 -617 799 -960 436 725 -177 -30... |
| correct output |
|---|
| 976 930 968 |
| user output |
|---|
| (empty) |
Test 21
Verdict: RUNTIME ERROR
| input |
|---|
| 99 -34 722 -880 -572 -241 415 -28... |
| correct output |
|---|
| 944 893 930 |
| user output |
|---|
| (empty) |
Test 22
Verdict: RUNTIME ERROR
| input |
|---|
| 100 -992 368 517 -516 -307 -813 -3... |
| correct output |
|---|
| 987 983 978 |
| user output |
|---|
| (empty) |
Test 23
Verdict: RUNTIME ERROR
| input |
|---|
| 100 -410 683 -411 -720 -559 -997 4... |
| correct output |
|---|
| 996 997 1000 |
| user output |
|---|
| (empty) |
Test 24
Verdict: RUNTIME ERROR
| input |
|---|
| 100 42 -652 -295 -94 -213 -974 658... |
| correct output |
|---|
| 960 997 933 |
| user output |
|---|
| (empty) |
Test 25
Verdict: RUNTIME ERROR
| input |
|---|
| 100 230 16 1000 314 599 242 -921 4... |
| correct output |
|---|
| 1000 999 998 |
| user output |
|---|
| (empty) |
Test 26
Verdict: RUNTIME ERROR
| input |
|---|
| 100 -557 -203 -490 -20 -187 -727 -... |
| correct output |
|---|
| -20 -12 -6 |
| user output |
|---|
| (empty) |
Test 27
Verdict: RUNTIME ERROR
| input |
|---|
| 100 -857 -525 -888 -592 -468 -378 ... |
| correct output |
|---|
| -1 -16 -34 |
| user output |
|---|
| (empty) |
Test 28
Verdict: RUNTIME ERROR
| input |
|---|
| 100 -985 -939 -972 -976 -936 -971 ... |
| correct output |
|---|
| -900 -901 -902 |
| user output |
|---|
| (empty) |
