# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
498555 | 2021-12-25T12:56:04 Z | The_Samurai | Red-blue table (IZhO19_stones) | C++ | 1 ms | 204 KB |
#include <bits/stdc++.h> using namespace std; void solve() { int n, m, ans, x = 1; cin >> n >> m; if (n == 1) { cout << m << '\n'; for (int i = 0; i < m; i++) { cout << '-'; } cout << '\n'; return; } if (n == 2) { if (m == 1) { cout << "2\n"; cout << "+\n+\n"; return; } cout << m << '\n'; for (int i = 0; i < m; i++) { cout << '-'; } cout << '\n'; for (int i = 0; i < m; i++) { cout << '-'; } cout << '\n'; return; } if (n == 3) { if (m == 1) { cout << "3\n"; cout << "+\n+\n+\n"; return; } cout << m + 1 << '\n'; for (int i = 0; i < 2; i++) { for (int j = 0; j < m; j++) { cout << '-'; } cout << '\n'; } for (int i = 0; i < m; i++) { cout << '+'; } cout << '\n'; return; } if (n == 4) { cout << m + 1 << '\n'; for (int i = 0; i < 3; i++) { for (int j = 0; j < m; j++) { cout << '-'; } cout << '\n'; } for (int i = 0; i < m; i++) { cout << '+'; } cout << '\n'; return; } if (n == 5) { cout << m + 2 << '\n'; for (int i = 0; i < 3; i++) { for (int j = 0; j < m; j++) { cout << '-'; } cout << '\n'; } } if (m <= 2) { cout << n << '\n'; for (int i = 0; i < n; i++) { for (int j = 0; j < m; j++) { cout << '+'; } cout << '\n'; } return; } if (m == 3) { cout << n + 1 << '\n'; for (int i = 0; i < n; i++) { cout << "++-\n"; } cout << '\n'; return; } if (m == 4) { cout << n + 1 << '\n'; for (int i = 0; i < n; i++) { cout << "+++-\n"; } return; } if (m == 5) { cout << n + 2 << '\n'; for (int i = 0; i < n; i++) { cout << "+++--\n"; } return; } } int main() { int t; cin >> t; while (t--) { solve(); } }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 204 KB | Output is correct |
2 | Incorrect | 1 ms | 204 KB | Wrong answer in test 4 1: 2 < 4 |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 204 KB | Wrong answer |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 204 KB | Output is correct |
2 | Incorrect | 1 ms | 204 KB | Wrong answer in test 4 1: 2 < 4 |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 204 KB | Wrong answer |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 204 KB | Wrong answer |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 204 KB | Output is correct |
2 | Incorrect | 1 ms | 204 KB | Wrong answer in test 4 1: 2 < 4 |