結果
問題 | No.82 市松模様 |
ユーザー | Ohnuma |
提出日時 | 2020-04-08 17:52:12 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 424 bytes |
コンパイル時間 | 91 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-07-18 21:22:44 |
合計ジャッジ時間 | 856 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 29 ms
10,752 KB |
testcase_01 | AC | 27 ms
10,624 KB |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | AC | 28 ms
10,624 KB |
testcase_06 | AC | 26 ms
10,624 KB |
testcase_07 | AC | 26 ms
10,752 KB |
testcase_08 | AC | 25 ms
10,752 KB |
testcase_09 | AC | 26 ms
10,624 KB |
ソースコード
w,h,c = input().split() w,h = int(w), int(h) for i in range(h): if i%2==0: if c=='W': line = 'WB'*(w//2) else: line = 'BW'*(w//2) if w%2!=0: line += line[-2] else: if c=='W': line = 'BW'*(w//2) else: line = 'WB'*(w//2) if w%2!=0: line += line[-2] print(line)