結果

問題 No.104 国道
ユーザー RyutoRyuto
提出日時 2018-03-31 13:00:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 48 ms / 5,000 ms
コード長 172 bytes
コンパイル時間 652 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 53,616 KB
最終ジャッジ日時 2024-06-26 01:20:55
合計ジャッジ時間 2,441 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
52,072 KB
testcase_01 AC 48 ms
53,616 KB
testcase_02 AC 44 ms
51,976 KB
testcase_03 AC 46 ms
52,684 KB
testcase_04 AC 47 ms
53,152 KB
testcase_05 AC 47 ms
52,532 KB
testcase_06 AC 45 ms
53,352 KB
testcase_07 AC 48 ms
52,280 KB
testcase_08 AC 43 ms
53,172 KB
testcase_09 AC 44 ms
52,364 KB
testcase_10 AC 45 ms
53,020 KB
testcase_11 AC 45 ms
52,076 KB
testcase_12 AC 45 ms
52,436 KB
testcase_13 AC 45 ms
51,836 KB
testcase_14 AC 44 ms
53,080 KB
testcase_15 AC 44 ms
51,984 KB
testcase_16 AC 47 ms
52,496 KB
testcase_17 AC 45 ms
52,912 KB
testcase_18 AC 43 ms
53,004 KB
testcase_19 AC 44 ms
53,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python

indat = list(input().strip())

ans = 1
for s in indat:
    if s == 'L':
        ans = ans * 2
    elif s == 'R':
        ans = ans * 2 +1
print(ans)
0