#include <bits/stdc++.h>
using namespace std ;
int main (){
int n ; cin >> n ;
pair <int , int> a[n+5] ;
for ( int i = 0 ; i < n ; i ++ ) cin >> a[i].first >> a[i].second ;
sort ( a , a + n ) ;
int pref = 0 , ans = 0 ;
for ( int i = 0 ; i < n ; i ++ ){
pref += a[i].second ;
pref = max ( pref , a[i].second + a[i].first ) ;
ans = max ( ans , pref-a[i].first ) ;
}
cout << ans ;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
344 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
344 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
344 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
344 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |