結果

問題 No.82 市松模様
ユーザー Soratop
提出日時 2020-11-09 15:11:27
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 159 bytes
コンパイル時間 533 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-07-22 16:05:02
合計ジャッジ時間 2,285 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 3
other WA * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

w,h,c=input().split()
w=int(w)
h=int(h)
for i in range(w):
    if c=="B" and i%2==0 or c=="W" and i%2==1:
        print("BW"*h)
    else:
        print('WB'*h)
0