結果

問題 No.82 市松模様
ユーザー aitdccdaitdccd
提出日時 2018-01-02 12:00:48
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 485 bytes
コンパイル時間 1,327 ms
コンパイル使用メモリ 165,788 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-02 06:42:49
合計ジャッジ時間 1,804 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 1 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 1 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:24:48: warning: 'b' may be used uninitialized [-Wmaybe-uninitialized]
   24 |             cout << (((i + j) % 2 == 0) ? a : b);
      |                                                ^
main.cpp:16:13: note: 'b' was declared here
   16 |     char a, b;
      |             ^
main.cpp:24:48: warning: 'a' may be used uninitialized [-Wmaybe-uninitialized]
   24 |             cout << (((i + j) % 2 == 0) ? a : b);
      |                                                ^
main.cpp:16:10: note: 'a' was declared here
   16 |     char a, b;
      |          ^

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

#define REP(i, n) for(int i = 0; i < n; i++)

int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout.tie(0);

    int w, h;
    char c;
    cin >> w >> h >> c;

    char a, b;
    if (c == 'B') {
        a = 'B', b = 'W';
    } else if (c == 'W') {
        a = 'W', b = 'B';
    }
    REP(i, h) {
        REP(j, w) {
            cout << (((i + j) % 2 == 0) ? a : b);
        }
        cout << endl;
    }
    return 0;
}
0