# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
344047 | 2021-01-05T05:04:43 Z | Nurlykhan | Red-blue table (IZhO19_stones) | C++17 | 45 ms | 1388 KB |
#include <bits/stdc++.h> using namespace std; int t; int n, m; void solve() { // n and m odd printf("%d\n", n + m / 2); for (int i = 0; i < n - 1; i++) { for (int j = 0; j < m; j++) { if (i % 2 == 0 && j % 2 == 0) printf("+"); if (i % 2 == 0 && j % 2) printf("-"); if (i % 2 && j % 2 == 0) printf("-"); if (i % 2 && j % 2) printf("+"); } printf("\n"); } for (int j = 0; j < m; j++) { if (j % 2 == 0) printf("-"); if (j % 2) printf("+"); } printf("\n"); } int main() { scanf("%d", &t); while (t--) { scanf("%d%d", &n, &m); solve(); } return 0; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 364 KB | Wrong answer in test 1 3: 2 < 3 |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 364 KB | in the table A+B is not equal to 25 |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 364 KB | Wrong answer in test 1 3: 2 < 3 |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 43 ms | 1388 KB | in the table A+B is not equal to 107 |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 45 ms | 1388 KB | in the table A+B is not equal to 36 |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 364 KB | Wrong answer in test 1 3: 2 < 3 |
2 | Halted | 0 ms | 0 KB | - |