# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
549615 | 2022-04-16T06:46:37 Z | AJ00 | Košnja (COCI17_kosnja) | C++14 | 1000 ms | 672 KB |
#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
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 212 KB | Output is correct |
2 | Correct | 1 ms | 212 KB | Output is correct |
3 | Correct | 1 ms | 212 KB | Output is correct |
4 | Correct | 1 ms | 212 KB | Output is correct |
5 | Correct | 1 ms | 212 KB | Output is correct |
6 | Execution timed out | 1084 ms | 672 KB | Time limit exceeded |
7 | Execution timed out | 1087 ms | 552 KB | Time limit exceeded |
8 | Execution timed out | 1093 ms | 492 KB | Time limit exceeded |
9 | Execution timed out | 1084 ms | 436 KB | Time limit exceeded |
10 | Execution timed out | 1091 ms | 612 KB | Time limit exceeded |