# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
37969 | tmk | Košnja (COCI17_kosnja) | C++14 | 0 ms | 2176 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()
{
ios_base::sync_with_stdio(0);
cin.tie(0);
int k;
cin>>k;
for(int i=0;i<k;i++)
{
int n,m;
cin>>n>>m;
cout<<(min(n,m)-1)*2<<"\n";
}
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |