# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
381367 | asqar | Košnja (COCI17_kosnja) | C++14 | 142 ms | 1096 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 main ()
{
int n;
cin >> n;
int a[ 50001], b[50001];
for (int i = 1; i <= n; i ++) {
cin >> a[i] >> b[i];
cout << (min (a[i], b[i]) - 1) * 2 << "\n";
}
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |