結果
| 問題 | No.3420 Letter Loading |
| コンテスト | |
| ユーザー |
kidodesu
|
| 提出日時 | 2025-12-27 17:55:19 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 244 bytes |
| 記録 | |
| コンパイル時間 | 163 ms |
| コンパイル使用メモリ | 82,544 KB |
| 実行使用メモリ | 67,024 KB |
| 最終ジャッジ日時 | 2026-01-11 13:58:13 |
| 合計ジャッジ時間 | 1,220 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 8 RE * 4 |
ソースコード
n, w, h = map(int, input().split()); assert 1 <= n <= 2549 and 1 <= w <= 50 and 1 <= h <= 50
A = list(map(lambda x: len(x), input().split("l")))
for s in [["o" if h-y <= A[x] else "x" for x in range(w)] for y in range(h)]:
print("".join(s))
kidodesu