# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
168086 | 2019-12-11T10:06:42 Z | YottaByte | Red-blue table (IZhO19_stones) | C++14 | 46 ms | 1912 KB |
#include <iostream> using namespace std; #define ll long long #define sz(x) (int)x.size() #define pii pair < int, int > #define endl "\n" #define METH ios::sync_with_stdio(0); cin.tie(0); #define BEGIN cout << "BEGIN" << endl; #define END cout << "END" << endl; const int N = 1e3; const int mod = 1e9 + 7; /// ANOTHER HASH MOD: 228228227 const int prime = 29; /// ANOTHER HASH PRIME: 997 const int INF = ((long long) 0xCAFEBABE - 1e9 - 4e8); int n, m, ans[N + 1][N + 1]; inline void purify() { } inline void precalc() { } inline void read() { scanf("%d %d", &n, &m); } void out() { char a = '+', b = '-'; if (n / 2 + m >= m / 2 + n) { swap(a, b); } for (int i = 1; i <= n; i++) { for (int j = 1; j <= m; j++) { ans[i][j] = a; } } if (n / 2 + m >= m / 2 + n) { cout << n / 2 + m << endl; int cntp = 0; int ii = 0, jj = 1; while (cntp < (n / 2) * ((m + 1) / 2)) { if (cntp % ((m + 1) / 2) == 0) { ii++; } jj--; jj %= m; jj++; ans[ii][jj++] = b; cntp++; } } else { cout << m / 2 + n << endl; int cntm = 0; int ii = 1, jj = 0; while (cntm < (m / 2) * ((n + 1) / 2)) { if (cntm % ((n + 1) / 2) == 0) { jj++; } ii--; ii %= n; ii++; ans[ii++][jj] = b; cntm++; } } for (int i = 1; i <= n; i++) { for (int j = 1; j <= m; j++) { cout << (char) ans[i][j]; } cout << endl; } } inline void solve() { out(); return; if ((n - 1) / 2 + m >= (m - 1) / 2 + n) { cout << (n - 1) / 2 + m << endl; for (int i = 1; i <= n; i++) { for (int j = 1; j <= m; j++) { if (i <= (n - 1) / 2) { if (j <= m / 2 + 1) { cout << '+'; continue; } } cout << '-'; } cout << endl; } } else { cout << (m - 1) / 2 + n << endl; for (int i = 1; i <= n; i++) { for (int j = 1; j <= m; j++) { if (i <= n / 2 + 1) { if (j <= (m - 1) / 2) { cout << '-'; continue; } } cout << '+'; } cout << endl; } } } int main() { int t; scanf("%d", &t); //precalc(); while (t--) { //purify(); read(); solve(); } }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 376 KB | Output is correct |
2 | Incorrect | 2 ms | 376 KB | in the table A+B is not equal to 2 |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 3 ms | 504 KB | in the table A+B is not equal to 2 |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 376 KB | Output is correct |
2 | Incorrect | 2 ms | 376 KB | in the table A+B is not equal to 2 |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 46 ms | 1788 KB | Wrong answer in test 97 21: 107 < 116 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 46 ms | 1912 KB | in the table A+B is not equal to 36 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 376 KB | Output is correct |
2 | Incorrect | 2 ms | 376 KB | in the table A+B is not equal to 2 |