結果

問題 No.104 国道
ユーザー kutsutamakutsutama
提出日時 2018-12-13 16:02:29
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 28 ms / 5,000 ms
コード長 106 bytes
コンパイル時間 502 ms
コンパイル使用メモリ 11,660 KB
実行使用メモリ 9,876 KB
最終ジャッジ日時 2023-10-25 09:26:17
合計ジャッジ時間 2,326 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
9,876 KB
testcase_01 AC 27 ms
9,876 KB
testcase_02 AC 28 ms
9,876 KB
testcase_03 AC 28 ms
9,876 KB
testcase_04 AC 28 ms
9,876 KB
testcase_05 AC 27 ms
9,876 KB
testcase_06 AC 28 ms
9,876 KB
testcase_07 AC 27 ms
9,876 KB
testcase_08 AC 27 ms
9,876 KB
testcase_09 AC 26 ms
9,876 KB
testcase_10 AC 27 ms
9,876 KB
testcase_11 AC 28 ms
9,876 KB
testcase_12 AC 28 ms
9,876 KB
testcase_13 AC 28 ms
9,876 KB
testcase_14 AC 28 ms
9,876 KB
testcase_15 AC 28 ms
9,876 KB
testcase_16 AC 27 ms
9,876 KB
testcase_17 AC 27 ms
9,876 KB
testcase_18 AC 28 ms
9,876 KB
testcase_19 AC 27 ms
9,876 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = input()
now = 1
for c in s:
  if c == 'L':
    now = now * 2
  else:
    now = now * 2 + 1
print(now)
0