結果
問題 |
No.104 国道
|
ユーザー |
|
提出日時 | 2018-12-20 13:03:59 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
MLE
|
実行時間 | - |
コード長 | 180 bytes |
コンパイル時間 | 140 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 817,580 KB |
最終ジャッジ日時 | 2024-09-25 08:53:19 |
合計ジャッジ時間 | 7,235 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 11 MLE * 2 -- * 3 |
ソースコード
s = input() t = len(s) l = [] for i in range(2**t, 2**(t+1)): l.append(i) for i in s: if i == 'L': l = l[:len(l)//2] else: l = l[len(l)//2:] print(*l)