結果

問題 No.104 国道
ユーザー abcabc
提出日時 2016-11-04 11:51:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 5,000 ms
コード長 505 bytes
コンパイル時間 2,050 ms
コンパイル使用メモリ 74,340 KB
実行使用メモリ 54,304 KB
最終ジャッジ日時 2024-11-25 02:31:27
合計ジャッジ時間 5,437 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
53,852 KB
testcase_01 AC 101 ms
52,980 KB
testcase_02 AC 116 ms
53,772 KB
testcase_03 AC 119 ms
54,116 KB
testcase_04 AC 105 ms
52,960 KB
testcase_05 AC 115 ms
54,072 KB
testcase_06 AC 112 ms
53,788 KB
testcase_07 AC 114 ms
53,984 KB
testcase_08 AC 116 ms
53,872 KB
testcase_09 AC 111 ms
54,192 KB
testcase_10 AC 114 ms
53,952 KB
testcase_11 AC 100 ms
52,640 KB
testcase_12 AC 121 ms
53,900 KB
testcase_13 AC 118 ms
53,772 KB
testcase_14 AC 113 ms
54,004 KB
testcase_15 AC 114 ms
53,896 KB
testcase_16 AC 117 ms
54,076 KB
testcase_17 AC 102 ms
52,888 KB
testcase_18 AC 120 ms
53,972 KB
testcase_19 AC 120 ms
54,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {

        Scanner sc = new Scanner(System.in);

        if (!sc.hasNext()) {
            System.out.println(1);
            return;
        }

        String route = sc.next();

        int road = 1;

        for (int i = 0; i < route.length(); i++) {

            road *= 2;

            if (route.charAt(i) == 'R') {
                road++;
            }

        }

        System.out.println(road);

    }

}
0