結果
| 問題 | No.82 市松模様 |
| コンテスト | |
| ユーザー |
convexineq
|
| 提出日時 | 2020-12-03 08:18:06 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 43 ms / 5,000 ms |
| コード長 | 149 bytes |
| コンパイル時間 | 333 ms |
| コンパイル使用メモリ | 82,408 KB |
| 実行使用メモリ | 59,724 KB |
| 最終ジャッジ日時 | 2024-09-13 15:44:38 |
| 合計ジャッジ時間 | 1,183 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 7 |
ソースコード
res = ["W","B"]
s = input().split()
w,h = int(s[0]), int(s[1])
x = s[2]=="B"
for i in range(h):
print("".join(res[(i+j+x)%2] for j in range(w)))
convexineq