답안 #331098

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
331098 2020-11-27T10:30:02 Z Enkhmunkh Red-blue table (IZhO19_stones) C++14
0 / 100
35 ms 1516 KB
#include <bits/stdc++.h>
using namespace std;
void solution () {
    int n, m;
    cin >> n >> m;
    char arr[n][m];
    cout << n + n/2 << "\n";
    if (n < m) {
        swap(n, m);
    } 
    for (int i = 0; i < m; i++) {
        for (int j = 0, a = n/2+1; j < n; j++) {
            if (a != 0) {
                arr[i][j] = '+';
                a--;
            }else {
                arr[i][j] = '-';
            }
            cout << arr[i][j];
        }
        cout << "\n";
    }
}
int main () {
    ios::sync_with_stdio(false);
	cin.tie(NULL);
    int t;
    cin >> t;
    while (t--) solution();
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 364 KB in the table A+B is not equal to 1
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 364 KB in the table A+B is not equal to 4
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 364 KB in the table A+B is not equal to 1
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 35 ms 1388 KB Wrong answer
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 34 ms 1516 KB in the table A+B is not equal to 36
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 364 KB in the table A+B is not equal to 1
2 Halted 0 ms 0 KB -