結果

問題 No.82 市松模様
ユーザー matsu7874matsu7874
提出日時 2014-12-02 23:47:39
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 30 ms / 5,000 ms
コード長 209 bytes
コンパイル時間 94 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-06-11 07:49:29
合計ジャッジ時間 985 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

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

if C == 'B':
  S = ['B', 'W']
else:
  S = ['W', 'B']

for h in range(H):
  L = ""
  for w in range(W):
    L += S[(h+w)%2]
  print(L)
0