結果

問題 No.104 国道
ユーザー ABKZABKZ
提出日時 2021-06-23 23:00:17
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 146 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 82,040 KB
実行使用メモリ 844,204 KB
最終ジャッジ日時 2024-06-24 23:24:52
合計ジャッジ時間 3,472 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
54,784 KB
testcase_01 AC 47 ms
54,400 KB
testcase_02 AC 47 ms
54,784 KB
testcase_03 AC 47 ms
54,528 KB
testcase_04 AC 47 ms
54,272 KB
testcase_05 AC 46 ms
54,912 KB
testcase_06 AC 46 ms
54,528 KB
testcase_07 AC 45 ms
55,168 KB
testcase_08 AC 47 ms
54,784 KB
testcase_09 AC 47 ms
54,656 KB
testcase_10 AC 46 ms
54,912 KB
testcase_11 AC 46 ms
54,912 KB
testcase_12 AC 47 ms
55,296 KB
testcase_13 AC 50 ms
59,008 KB
testcase_14 AC 68 ms
87,296 KB
testcase_15 AC 280 ms
385,652 KB
testcase_16 MLE -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from functools import reduce

S = input()

print(2**len(S) + reduce(lambda a, b: [0]*len(a)+a if b=="R" else a+[0]*len(a), S[::-1], [1]).index(1))
0