結果

問題 No.104 国道
ユーザー abcabc
提出日時 2016-11-04 11:47:28
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 410 bytes
コンパイル時間 2,095 ms
コンパイル使用メモリ 74,328 KB
実行使用メモリ 54,360 KB
最終ジャッジ日時 2024-11-25 02:30:21
合計ジャッジ時間 4,927 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
53,832 KB
testcase_01 AC 99 ms
52,532 KB
testcase_02 AC 96 ms
52,144 KB
testcase_03 RE -
testcase_04 AC 92 ms
52,372 KB
testcase_05 AC 114 ms
53,876 KB
testcase_06 AC 112 ms
53,988 KB
testcase_07 AC 113 ms
54,360 KB
testcase_08 AC 100 ms
52,764 KB
testcase_09 AC 102 ms
52,736 KB
testcase_10 AC 109 ms
53,624 KB
testcase_11 AC 106 ms
53,344 KB
testcase_12 AC 109 ms
53,644 KB
testcase_13 AC 114 ms
53,968 KB
testcase_14 AC 110 ms
53,724 KB
testcase_15 AC 113 ms
53,840 KB
testcase_16 AC 114 ms
53,624 KB
testcase_17 AC 113 ms
53,888 KB
testcase_18 AC 114 ms
53,796 KB
testcase_19 AC 115 ms
54,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {

        Scanner sc = new Scanner(System.in);

        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