結果

問題 No.104 国道
ユーザー takeya_okinotakeya_okino
提出日時 2017-06-21 21:54:59
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 350 bytes
コンパイル時間 2,240 ms
コンパイル使用メモリ 73,604 KB
実行使用メモリ 41,324 KB
最終ジャッジ日時 2024-10-02 11:49:56
合計ジャッジ時間 5,745 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,320 KB
testcase_01 AC 127 ms
41,044 KB
testcase_02 AC 125 ms
40,860 KB
testcase_03 RE -
testcase_04 AC 126 ms
41,120 KB
testcase_05 AC 126 ms
40,816 KB
testcase_06 AC 125 ms
41,016 KB
testcase_07 AC 116 ms
39,936 KB
testcase_08 AC 125 ms
41,000 KB
testcase_09 AC 126 ms
40,900 KB
testcase_10 AC 123 ms
41,044 KB
testcase_11 AC 125 ms
40,760 KB
testcase_12 AC 111 ms
41,196 KB
testcase_13 AC 125 ms
41,088 KB
testcase_14 AC 126 ms
40,908 KB
testcase_15 AC 126 ms
41,120 KB
testcase_16 AC 114 ms
39,908 KB
testcase_17 AC 128 ms
41,084 KB
testcase_18 AC 126 ms
41,020 KB
testcase_19 AC 111 ms
41,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    String s = sc.next();
    long ans = 1;
    for(int i = 0; i < s.length(); i++) {
      if(s.charAt(i) == 'L') {
        ans *= 2;
      } else {
        ans = 2 * ans + 1;
      }
    }
    System.out.println(ans);
  }
}
0