結果

問題 No.82 市松模様
ユーザー otsunekootsuneko
提出日時 2021-05-06 13:08:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 44 ms / 5,000 ms
コード長 235 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 82,580 KB
実行使用メモリ 59,640 KB
最終ジャッジ日時 2024-09-14 05:18:01
合計ジャッジ時間 1,169 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,564 KB
testcase_01 AC 38 ms
51,872 KB
testcase_02 AC 39 ms
53,312 KB
testcase_03 AC 39 ms
52,152 KB
testcase_04 AC 38 ms
52,428 KB
testcase_05 AC 38 ms
52,668 KB
testcase_06 AC 39 ms
52,740 KB
testcase_07 AC 39 ms
51,808 KB
testcase_08 AC 43 ms
58,752 KB
testcase_09 AC 44 ms
59,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

C2 = "W" if C =="B" else "B"
for y in range(H):
    s = ""
    for x in range(W):
        if (x+y)%2:
            s += C2
        else:
            s += C
    print(s)
0