結果

問題 No.82 市松模様
ユーザー Luoto-green
提出日時 2017-07-05 18:27:42
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 248 bytes
コンパイル時間 77 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-10-05 19:58:26
合計ジャッジ時間 1,195 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 WA * 1
other AC * 4 WA * 3
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,c = input().split()

if c == "W":
    v = "B"
else:
    v = "w"
for j in range(int(m)):
    for i in range(int(n)):
        if i % 2 != 0: 
            print(v,end="")
        if i % 2 == 0:
            print(c,end="")
    v,c = c,v
    print()
0