# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
381331 | Sakhi_Sakenuly | Košnja (COCI17_kosnja) | C++14 | 135 ms | 620 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;
int main () {
int y,m,n,sum;
cin >> y;
for (int i=0;i<y;i++) {
cin >> n >> m;
if (n==1 || m==1) {
cout<< 0 << endl;
} else if (n<4 || m<4) {
cout << 4 << endl;
} else if (n>4 || m>4) {
sum=max(n,m);
cout << sum;
} else {
cout << 0;
}
}
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |