# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
381324 | IldarKA | Košnja (COCI17_kosnja) | C++14 | 138 ms | 1516 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;
int k;
int main(){
cin >> k;
while(k--){
int n, m;
cin >> n >> m;
cout << min(n - 1, m - 1) * 2<< '\n';
}
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |