結果

問題 No.82 市松模様
ユーザー ohanaohana
提出日時 2023-09-26 17:54:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 44 ms / 5,000 ms
コード長 150 bytes
コンパイル時間 329 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 63,152 KB
最終ジャッジ日時 2024-07-19 11:51:33
合計ジャッジ時間 1,267 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
52,980 KB
testcase_01 AC 31 ms
52,780 KB
testcase_02 AC 31 ms
52,476 KB
testcase_03 AC 31 ms
51,936 KB
testcase_04 AC 32 ms
52,368 KB
testcase_05 AC 31 ms
52,284 KB
testcase_06 AC 33 ms
52,404 KB
testcase_07 AC 33 ms
54,272 KB
testcase_08 AC 42 ms
62,656 KB
testcase_09 AC 44 ms
63,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

w, h, c = input().split()
s = "BW"
for i in range(int(h)):
    for j in range(int(w)):
        print(s[(i + j + (c == "W")) % 2], end="")
    print()
0