CSES - E4590 2020 0 - Results
Submission details
Task:3-sum
Sender:Tuomo Perä
Submission time:2020-09-19 11:02:02 +0300
Language:C++ (C++11)
Status:READY
Result:
Test results
testverdicttime
#10.01 sdetails
#20.01 sdetails
#30.01 sdetails
#40.01 sdetails
#50.01 sdetails
#60.01 sdetails
#70.01 sdetails
#80.01 sdetails
#90.01 sdetails
#100.01 sdetails
#110.01 sdetails
#120.01 sdetails
#130.01 sdetails
#140.01 sdetails
#150.01 sdetails
#160.01 sdetails
#170.01 sdetails
#180.01 sdetails
#190.01 sdetails
#200.01 sdetails
#210.01 sdetails
#220.01 sdetails
#230.01 sdetails
#240.01 sdetails
#250.01 sdetails
#260.01 sdetails
#270.01 sdetails
#280.01 sdetails

Compiler report

input/code.cpp: In function 'int main()':
input/code.cpp:14:9: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)', declared with attribute warn_unused_result [-Wunused-result]
  freopen("cases.txt", "r", stdin);
  ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~

Code

#include <iostream>
#include <algorithm> 
#include <vector>

using namespace std;

vector<int> arr;

int first = -9999;
int second = -9999;
int third = -9999;

int main() {
	freopen("cases.txt", "r", stdin);

	long long a, b;
	cin >> a;
	for (int i = 0; i < a; i++) {
		cin >> b;
		arr.push_back(b);
	}

	sort(arr.begin(), arr.end());

	cout << arr[a - 1] << " " << arr[a - 2] << " " << arr[a - 3] << endl;

	return 0;
}

Test details

Test 1

Verdict:

input
3
-702 391 288

correct output
-702 391 288

user output
(empty)

Test 2

Verdict:

input
3
-609 886 -448

correct output
-609 886 -448

user output
(empty)

Test 3

Verdict:

input
3
484 -459 605

correct output
484 -459 605

user output
(empty)

Test 4

Verdict:

input
10
491 934 -395 -873 -822 447 -90...

correct output
491 934 447

user output
(empty)

Test 5

Verdict:

input
10
-293 853 267 -762 -647 843 35 ...

correct output
853 843 744

user output
(empty)

Test 6

Verdict:

input
10
-389 -908 441 187 993 -68 -593...

correct output
441 187 993

user output
(empty)

Test 7

Verdict:

input
4
-195 251 -11 423

correct output
251 -11 423

user output
(empty)

Test 8

Verdict:

input
4
-522 -222 -909 294

correct output
-522 -222 294

user output
(empty)

Test 9

Verdict:

input
4
141 764 -262 3

correct output
141 764 3

user output
(empty)

Test 10

Verdict:

input
5
669 -567 -224 160 194

correct output
669 160 194

user output
(empty)

Test 11

Verdict:

input
5
294 783 -60 -637 126

correct output
294 783 126

user output
(empty)

Test 12

Verdict:

input
5
-941 391 -339 -982 808

correct output
391 -339 808

user output
(empty)

Test 13

Verdict:

input
11
726 997 -588 -186 465 472 -865...

correct output
726 997 472

user output
(empty)

Test 14

Verdict:

input
11
-346 950 -522 106 278 265 531 ...

correct output
950 531 678

user output
(empty)

Test 15

Verdict:

input
11
633 -52 -771 449 409 684 -516 ...

correct output
633 449 684

user output
(empty)

Test 16

Verdict:

input
57
714 -738 -127 -549 613 11 263 ...

correct output
880 887 947

user output
(empty)

Test 17

Verdict:

input
57
-599 -338 -960 581 -979 -85 -1...

correct output
830 988 852

user output
(empty)

Test 18

Verdict:

input
57
-346 -990 -893 -109 876 438 -5...

correct output
876 910 885

user output
(empty)

Test 19

Verdict:

input
99
621 189 655 890 -48 -440 276 6...

correct output
945 962 994

user output
(empty)

Test 20

Verdict:

input
99
-617 799 -960 436 725 -177 -30...

correct output
976 930 968

user output
(empty)

Test 21

Verdict:

input
99
-34 722 -880 -572 -241 415 -28...

correct output
944 893 930

user output
(empty)

Test 22

Verdict:

input
100
-992 368 517 -516 -307 -813 -3...

correct output
987 983 978

user output
(empty)

Test 23

Verdict:

input
100
-410 683 -411 -720 -559 -997 4...

correct output
996 997 1000

user output
(empty)

Test 24

Verdict:

input
100
42 -652 -295 -94 -213 -974 658...

correct output
960 997 933

user output
(empty)

Test 25

Verdict:

input
100
230 16 1000 314 599 242 -921 4...

correct output
1000 999 998

user output
(empty)

Test 26

Verdict:

input
100
-557 -203 -490 -20 -187 -727 -...

correct output
-20 -12 -6

user output
(empty)

Test 27

Verdict:

input
100
-857 -525 -888 -592 -468 -378 ...

correct output
-1 -16 -34

user output
(empty)

Test 28

Verdict:

input
100
-985 -939 -972 -976 -936 -971 ...

correct output
-900 -901 -902

user output
(empty)