Submission #549615

#TimeUsernameProblemLanguageResultExecution timeMemory
549615AJ00Košnja (COCI17_kosnja)C++14
25 / 50
1093 ms672 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; int ans = 0; for (int i = 1; i <= min(x,y); i++){ if (i == 1 || i == min(x,y)-1){ ans+=1; } else { ans+=2; } } cout << ans << "\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...