結果
| 問題 |
No.82 市松模様
|
| コンテスト | |
| ユーザー |
taba
|
| 提出日時 | 2016-04-14 05:53:15 |
| 言語 | Python2 (2.7.18) |
| 結果 |
AC
|
| 実行時間 | 12 ms / 5,000 ms |
| コード長 | 98 bytes |
| コンパイル時間 | 41 ms |
| コンパイル使用メモリ | 6,912 KB |
| 実行使用メモリ | 6,820 KB |
| 最終ジャッジ日時 | 2024-10-04 08:16:55 |
| 合計ジャッジ時間 | 641 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 7 |
ソースコード
w,h,c=raw_input().split() s="WB"*int(w) for i in range(int(h)): print s[(i&1)^(c=="B"):][:int(w)]
taba