답안 #466073

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
466073 2021-08-17T20:02:48 Z TeaTime Red-blue table (IZhO19_stones) C++17
0 / 100
30 ms 1228 KB
//#pragma GCC optimize("O3")
//#pragma GCC target("avx2")
#include <iostream>
#include <vector>
#include <string>
#include <algorithm>
#include <map>
#include <set>
#include <queue>
#include <unordered_map>
#include <cmath>

using namespace std;

#define fastInp cin.tie(0); cout.tie(0); ios_base::sync_with_stdio(0);

typedef long long ll;
typedef long double ld;

const ll SZ = 1e6 + 100, INF = 1e9, AM = 2, K = 26;

const vector<ll> P = { 1774, 177 };
const vector<ll> MOD = { ll(1e9 + 7), ll(1e9 + 9) };
ll n, m;

signed main() {
    fastInp;

    ll t;
    cin >> t;
    while (t--) {
        cin >> n >> m;

        if (m >= n) {
            for (int i = 0; i < n; i++) {
                for (int j = 0; j < m; j++) {
                    if (i % 2 == 0) {
                        cout << "-";
                    } else {
                        cout << "+";
                    }
                }
                cout << "\n";
            }
        } else {
            for (int i = 0; i < n; i++) {
                for (int j = 0; j < m; j++) {
                    if (j % 2 != 0) {
                        cout << "-";
                    } else {
                        cout << "+";
                    }
                }
                cout << "\n";
            }
        }
    }

    return 0;
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 204 KB Expected integer, but "---" found
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 332 KB Expected integer, but "---------------------------------------------" found
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 204 KB Expected integer, but "---" found
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 30 ms 1228 KB Expected integer, but "+-+-+-+-+-+-+-+-+-+-+" found
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 29 ms 1176 KB Expected integer, but "------------------------" found
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 204 KB Expected integer, but "---" found
2 Halted 0 ms 0 KB -