# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
84508 | MatesV13 | Košnja (COCI17_kosnja) | C++11 | 17 ms | 3272 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
long long k,m,n;
int main (){
ios::sync_with_stdio(0);
cin.tie(0);
cin >> k;
for (int i=0;i<k;i++){
cin >> n >> m;
if (m<n) cout << 2*(m-1) << "\n";
else cout << 2*(n-1) << "\n";
}
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |