結果

問題 No.82 市松模様
ユーザー ABKZABKZ
提出日時 2021-06-27 11:42:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 46 ms / 5,000 ms
コード長 316 bytes
コンパイル時間 291 ms
コンパイル使用メモリ 82,420 KB
実行使用メモリ 60,600 KB
最終ジャッジ日時 2024-06-25 09:41:59
合計ジャッジ時間 1,133 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,068 KB
testcase_01 AC 38 ms
53,284 KB
testcase_02 AC 37 ms
52,364 KB
testcase_03 AC 36 ms
52,004 KB
testcase_04 AC 37 ms
53,612 KB
testcase_05 AC 36 ms
52,068 KB
testcase_06 AC 37 ms
52,892 KB
testcase_07 AC 46 ms
52,668 KB
testcase_08 AC 41 ms
60,600 KB
testcase_09 AC 40 ms
59,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

W, H, C = input().split()
W = int(W)
H = int(H)

row = [0 if i %2 == 0 else 1 for i in range(W)]
rows = []
for _ in range(H):
    rows.append(row)
    row = list(map(lambda x: (x + 1) % 2, row))

pattern = ["B", "W"] if C == "B" else ["W", "B"]

for r in rows:
    print("".join(list(map(lambda x: pattern[x], r))))
0