# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
170325 | ngmh | Košnja (COCI17_kosnja) | C++11 | 177 ms | 1400 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 n, x, y;
int main(){
cin >> n;
for(int i = 0; i < n; i++){
cin >> x >> y;
cout << min((x-1)*2, (y-1)*2) << "\n";
}
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |