Submission #549616

#TimeUsernameProblemLanguageResultExecution timeMemory
549616AJ00Košnja (COCI17_kosnja)C++14
50 / 50
15 ms980 KiB
#include <bits/stdc++.h>
 
using namespace std;
 
int main()
{
    ios_base::sync_with_stdio(false);
    cin.tie(0);
    int tc=1,n,x,y,m; 
    cin >> tc;
    for (int poppo = 1; poppo <= tc; poppo++){
        //cout << "Case #" << poppo << ": "; 
        cin >> x >> y;
      	cout << 2*(min(x,y)-1) << "\n";
    }
    return 0;
}

Compilation message (stderr)

kosnja.cpp: In function 'int main()':
kosnja.cpp:9:14: warning: unused variable 'n' [-Wunused-variable]
    9 |     int tc=1,n,x,y,m;
      |              ^
kosnja.cpp:9:20: warning: unused variable 'm' [-Wunused-variable]
    9 |     int tc=1,n,x,y,m;
      |                    ^
#Verdict Execution timeMemoryGrader output
Fetching results...