답안 #331096

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
331096 2020-11-27T10:25:58 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];
    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++, a--) {
            if (a != 0) {
                arr[i][j] = '+';
            }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 2 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 Wrong answer in test 3 45: 4 < 46
# 결과 실행 시간 메모리 Grader output
1 Incorrect 2 ms 364 KB in the table A+B is not equal to 1
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 34 ms 1388 KB Wrong answer
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 36 ms 1388 KB in the table A+B is not equal to 36
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 2 ms 364 KB in the table A+B is not equal to 1
2 Halted 0 ms 0 KB -