結果

問題 No.104 国道
ユーザー takeya_okinotakeya_okino
提出日時 2017-06-21 22:00:08
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 454 bytes
コンパイル時間 2,022 ms
コンパイル使用メモリ 74,652 KB
実行使用メモリ 54,184 KB
最終ジャッジ日時 2024-10-02 11:50:04
合計ジャッジ時間 4,858 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
54,008 KB
testcase_01 AC 107 ms
53,828 KB
testcase_02 AC 105 ms
54,064 KB
testcase_03 RE -
testcase_04 AC 100 ms
52,772 KB
testcase_05 AC 107 ms
53,884 KB
testcase_06 AC 108 ms
54,184 KB
testcase_07 AC 97 ms
52,952 KB
testcase_08 AC 96 ms
52,740 KB
testcase_09 AC 110 ms
53,892 KB
testcase_10 AC 108 ms
54,092 KB
testcase_11 AC 96 ms
52,712 KB
testcase_12 AC 100 ms
52,556 KB
testcase_13 AC 113 ms
53,692 KB
testcase_14 AC 116 ms
54,016 KB
testcase_15 AC 102 ms
53,856 KB
testcase_16 AC 99 ms
53,064 KB
testcase_17 AC 115 ms
53,844 KB
testcase_18 AC 102 ms
53,468 KB
testcase_19 AC 111 ms
53,908 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;
    String crlf = System.getProperty("line.separator");
    if(!(s.equals(crlf))) {
      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