結果

問題 No.82 市松模様
ユーザー brthyyjpbrthyyjp
提出日時 2020-12-06 19:04:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 44 ms / 5,000 ms
コード長 514 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 82,664 KB
実行使用メモリ 60,584 KB
最終ジャッジ日時 2024-09-17 13:10:16
合計ジャッジ時間 1,188 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,360 KB
testcase_01 AC 42 ms
53,876 KB
testcase_02 AC 39 ms
52,680 KB
testcase_03 AC 37 ms
52,588 KB
testcase_04 AC 39 ms
53,000 KB
testcase_05 AC 38 ms
52,812 KB
testcase_06 AC 38 ms
52,544 KB
testcase_07 AC 38 ms
52,896 KB
testcase_08 AC 43 ms
59,100 KB
testcase_09 AC 44 ms
60,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

w,h,c = map(str, input().split())
w,h = int(w), int(h)
if c == 'B':
    ans = [[0]*w for _ in range(h)]
    for i in range(h):
        for j in range(w):
            if (i+j)%2 == 0:
                ans[i][j] = 'B'
            else:
                ans[i][j] = 'W'
else:
    ans = [[0]*w for _ in range(h)]
    for i in range(h):
        for j in range(w):
            if (i+j)%2 == 0:
                ans[i][j] = 'W'
            else:
                ans[i][j] = 'B'
for i in range(h):
    print(''.join(ans[i]))
0