# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
167849 | 2019-12-10T14:31:46 Z | YottaByte | Red-blue table (IZhO19_stones) | C++14 | 44 ms | 1380 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 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; inline void purify() { } inline void precalc() { } inline void read() { scanf("%d %d", &n, &m); } inline void solve() { char a, b; if (n < 3 || m < 3) { cout << max(n, m) << endl; if (m <= n) { for (int i = 1; i <= n; i++) { for (int j = 1; j <= m; j++) { cout << '+'; } cout << endl; } } else { for (int i = 1; i <= n; i++) { for (int j = 1; j <= m; j++) { cout << '-'; } cout << endl; } } return; } a = '+', b = '-'; cout << (m - 2) + (n / 2) + 1 << endl; for (int i = 1; i <= n; i++) { cout << a; for (int j = 1; j <= m - 2; j++) { if (i <= n / 2) { cout << a; } else { cout << b; } } cout << a << endl; } } int main() { int t; scanf("%d", &t); //precalc(); while (t--) { //purify(); read(); solve(); } }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 256 KB | in the table A+B is not equal to 3 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 3 ms | 376 KB | in the table A+B is not equal to 45 |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 256 KB | in the table A+B is not equal to 3 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 44 ms | 1380 KB | in the table A+B is not equal to 68 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 42 ms | 1272 KB | in the table A+B is not equal to 35 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 256 KB | in the table A+B is not equal to 3 |
2 | Halted | 0 ms | 0 KB | - |