Submission #2705453


Source Code Expand

#define _USE_MATH_DEFINES
#pragma region include
#include <iostream>
#include <iomanip>
#include <stdio.h>

#include <sstream>
#include <algorithm>
#include <iterator>
#include <cmath>
#include <complex>

#include <string>
#include <cstring>
#include <vector>
#include <bitset>

#include <queue>
#include <set>
#include <map>
#include <stack>
#include <list>

#include <ctime>
////
//#include <random>//
#pragma endregion //#include
/////////

#pragma region typedef
typedef long long LL;
typedef long double LD;
typedef unsigned long long ULL;
#pragma endregion //typedef
////定数
const int INF = (int)1e9;
const LL MOD = (LL)1e9+7;
const LL LINF = (LL)4e18+20;
const LD PI = acos(-1.0);
const double EPS = 1e-9;
/////////
using namespace::std;

void solve(){
	int N;
	cin>>N;
	vector<vector<int> > A(N,vector<int>(2));
	for(int i=0;i<N;++i){
		cin>>A[i][0] >>A[i][1];
	}
	sort(A.begin(),A.end());
	
	LL ans = A[N-1][0]+A[N-1][1];
	cout << ans << endl;
}

#pragma region main
signed main(void){
	std::cin.tie(0);
	std::ios::sync_with_stdio(false);
	std::cout << std::fixed;//小数を10進数表示
	cout << setprecision(16);//小数点以下の桁数を指定//coutとcerrで別	

	solve();
}
#pragma endregion //main()

Submission Info

Submission Time
Task B - Different Distribution
User akarin55
Language C++14 (GCC 5.4.1)
Score 200
Code Size 1290 Byte
Status AC
Exec Time 45 ms
Memory 5760 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 44 ms 5760 KB
02.txt AC 44 ms 5760 KB
03.txt AC 44 ms 5760 KB
04.txt AC 44 ms 5760 KB
05.txt AC 44 ms 5760 KB
06.txt AC 44 ms 5760 KB
07.txt AC 45 ms 5760 KB
08.txt AC 44 ms 5760 KB
09.txt AC 44 ms 5760 KB
10.txt AC 45 ms 5760 KB
11.txt AC 40 ms 5760 KB
12.txt AC 42 ms 5760 KB
13.txt AC 42 ms 5760 KB
14.txt AC 44 ms 5760 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