Submission #473114

#TimeUsernameProblemLanguageResultExecution timeMemory
473114_L__Košnja (COCI17_kosnja)C++17
50 / 50
15 ms588 KiB
// This code is written by _L__
#include <bits/stdc++.h>
using namespace std;
#define endl '\n'
#define F_word ios_base::sync_with_stdio(false), cin.tie(NULL), cout.tie(NULL);
typedef long long ll;
typedef long double ld;
const int mod = 1e9+7, N = 2e5+13, inf = 1e9+1;
const ld E = 1e-6;
#define ff first
#define ss second

int main(void){
    F_word;
    int k; cin >> k;
    while(k--){
        int l, r; cin >> l >> r;
        cout << (min(l,r)-1)*2 << endl;
    }
}
#Verdict Execution timeMemoryGrader output
Fetching results...