Submission #1837300


Source Code Expand

#include<bits/stdc++.h>
#define range(i,a,b) for(int i = (a); i < (b); i++)
#define rep(i,b) for(int i = 0; i < (b); i++)
#define all(a) (a).begin(), (a).end()
#define show(x)  cerr << #x << " = " << (x) << endl;
//const int INF = 1e8;
using namespace std;

int main(){
	int n;
	cin >> n;

	int maxi = 0, p;
	rep(i,n){
		int a, b;
		cin >> a >> b;
		if(maxi < a){
			maxi = a;
			p = b;
		}
	}
	cout << maxi + p << endl;
}

Submission Info

Submission Time
Task B - Different Distribution
User noy72
Language C++14 (GCC 5.4.1)
Score 200
Code Size 446 Byte
Status AC
Exec Time 109 ms
Memory 256 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 200 / 200
Status
AC × 3
AC × 23
Set Name Test Cases
Sample s1.txt, s2.txt, s3.txt
All 01.txt, 02.txt, 03.txt, 04.txt, 05.txt, 06.txt, 07.txt, 08.txt, 09.txt, 10.txt, 11.txt, 12.txt, 13.txt, 14.txt, 15.txt, 16.txt, 17.txt, 18.txt, 19.txt, 20.txt, s1.txt, s2.txt, s3.txt
Case Name Status Exec Time Memory
01.txt AC 104 ms 256 KB
02.txt AC 109 ms 256 KB
03.txt AC 104 ms 256 KB
04.txt AC 106 ms 256 KB
05.txt AC 106 ms 256 KB
06.txt AC 106 ms 256 KB
07.txt AC 104 ms 256 KB
08.txt AC 106 ms 256 KB
09.txt AC 105 ms 256 KB
10.txt AC 106 ms 256 KB
11.txt AC 70 ms 256 KB
12.txt AC 89 ms 256 KB
13.txt AC 88 ms 256 KB
14.txt AC 107 ms 256 KB
15.txt AC 1 ms 256 KB
16.txt AC 1 ms 256 KB
17.txt AC 1 ms 256 KB
18.txt AC 1 ms 256 KB
19.txt AC 1 ms 256 KB
20.txt AC 1 ms 256 KB
s1.txt AC 1 ms 256 KB
s2.txt AC 1 ms 256 KB
s3.txt AC 1 ms 256 KB