#include<bits/stdc++.h>
#define ll long long
#define boost ios_base::sync_with_stdio(NULL) , cin.tie(NULL) , cout.tie(NULL); // by Utebai Madiar 9
#define pb push_back
#define in insert
#define all(x) x.begin(),x.end()
#define sz(x) (int)x.size()
using namespace std;
const int INF = int(1e9) + 7 ;
const int mx = (int)1e5 + 1;
vector <int> g[mx] ;
bool u[mx] ;
int main(){
int n ;
cin >> n ;
for(int i = 1 ; i <= n ; i++) {
int x , y ;
cin >> x >> y ;
cout << min(x , y) * 2 - 2 << endl ;
}
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3 ms |
2668 KB |
Output is correct |
2 |
Correct |
3 ms |
2672 KB |
Output is correct |
3 |
Correct |
2 ms |
2668 KB |
Output is correct |
4 |
Correct |
2 ms |
2668 KB |
Output is correct |
5 |
Correct |
3 ms |
2668 KB |
Output is correct |
6 |
Correct |
89 ms |
2892 KB |
Output is correct |
7 |
Correct |
138 ms |
3056 KB |
Output is correct |
8 |
Correct |
116 ms |
2924 KB |
Output is correct |
9 |
Correct |
165 ms |
3052 KB |
Output is correct |
10 |
Correct |
105 ms |
2924 KB |
Output is correct |