답안 #331108

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