結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
53,820 KB
testcase_01 AC 136 ms
54,040 KB
testcase_02 AC 127 ms
53,868 KB
testcase_03 RE -
testcase_04 AC 130 ms
53,952 KB
testcase_05 AC 132 ms
54,076 KB
testcase_06 AC 128 ms
53,988 KB
testcase_07 AC 132 ms
53,660 KB
testcase_08 AC 133 ms
53,984 KB
testcase_09 AC 131 ms
53,892 KB
testcase_10 AC 132 ms
53,776 KB
testcase_11 AC 129 ms
54,008 KB
testcase_12 AC 129 ms
54,072 KB
testcase_13 AC 131 ms
53,856 KB
testcase_14 AC 131 ms
54,004 KB
testcase_15 AC 132 ms
53,792 KB
testcase_16 AC 131 ms
53,964 KB
testcase_17 AC 131 ms
53,940 KB
testcase_18 AC 129 ms
53,932 KB
testcase_19 AC 130 ms
53,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Run {
    public static void main (String arg[]) {
        Scanner scan = new Scanner(System.in);
        scan.useDelimiter("\\n");
        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