結果

問題 No.104 国道
ユーザー yuki2006yuki2006
提出日時 2015-02-23 17:39:41
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 84 ms / 5,000 ms
コード長 105 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 76,816 KB
実行使用メモリ 75,948 KB
最終ジャッジ日時 2024-06-23 22:10:27
合計ジャッジ時間 2,490 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
75,440 KB
testcase_01 AC 78 ms
75,540 KB
testcase_02 AC 75 ms
75,688 KB
testcase_03 AC 75 ms
75,792 KB
testcase_04 AC 78 ms
75,536 KB
testcase_05 AC 79 ms
75,820 KB
testcase_06 AC 74 ms
75,304 KB
testcase_07 AC 78 ms
75,676 KB
testcase_08 AC 75 ms
75,768 KB
testcase_09 AC 75 ms
75,652 KB
testcase_10 AC 75 ms
75,948 KB
testcase_11 AC 76 ms
75,388 KB
testcase_12 AC 75 ms
75,548 KB
testcase_13 AC 74 ms
75,640 KB
testcase_14 AC 76 ms
75,568 KB
testcase_15 AC 75 ms
75,896 KB
testcase_16 AC 75 ms
75,444 KB
testcase_17 AC 76 ms
75,656 KB
testcase_18 AC 75 ms
75,520 KB
testcase_19 AC 76 ms
75,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = raw_input()
i = 1
for c in S:
    if c == "L":
        i *= 2
    else:
        i = i * 2 + 1
print i
0