# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
37971 | tmk | Košnja (COCI17_kosnja) | C++14 | 23 ms | 2016 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;
#define st first
#define nd second
#define pb push_back
typedef long long LL;
int main()
{
int k;
scanf("%d",&k);
for(int i=0;i<k;i++)
{
int n,m;
scanf("%d",&n);
scanf("%d",&m);
int wynik=(min(n,m)-1)*2;
printf("%d\n",wynik);
}
return 0;
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |