結果

問題 No.104 国道
ユーザー dazydazy
提出日時 2016-09-11 03:42:20
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 371 bytes
コンパイル時間 3,709 ms
コンパイル使用メモリ 74,468 KB
実行使用メモリ 41,176 KB
最終ジャッジ日時 2024-11-17 00:17:31
合計ジャッジ時間 6,644 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
39,672 KB
testcase_01 AC 115 ms
40,840 KB
testcase_02 AC 115 ms
40,884 KB
testcase_03 RE -
testcase_04 AC 114 ms
41,096 KB
testcase_05 AC 115 ms
40,972 KB
testcase_06 AC 103 ms
39,880 KB
testcase_07 AC 112 ms
40,952 KB
testcase_08 AC 112 ms
40,972 KB
testcase_09 AC 112 ms
40,620 KB
testcase_10 AC 117 ms
40,888 KB
testcase_11 AC 123 ms
41,072 KB
testcase_12 AC 126 ms
41,116 KB
testcase_13 AC 129 ms
41,040 KB
testcase_14 AC 125 ms
41,020 KB
testcase_15 AC 112 ms
40,536 KB
testcase_16 AC 115 ms
40,784 KB
testcase_17 AC 112 ms
40,004 KB
testcase_18 AC 121 ms
40,796 KB
testcase_19 AC 118 ms
40,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Run {
    public static void main (String arg[]) {
        Scanner scan = new Scanner(System.in);
        String S = scan.next();
        long Road = 1;
        for (int i = 0; i < S.length(); i++) {
            if (S.charAt(i)=='L') Road = Road*2;
            else Road = Road*2 + 1;
        }
        System.out.println(Road);
    }
}
0