結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
53,744 KB
testcase_01 AC 94 ms
52,248 KB
testcase_02 AC 112 ms
53,796 KB
testcase_03 RE -
testcase_04 AC 100 ms
52,968 KB
testcase_05 AC 111 ms
53,788 KB
testcase_06 AC 109 ms
54,028 KB
testcase_07 AC 101 ms
52,648 KB
testcase_08 AC 97 ms
52,680 KB
testcase_09 AC 98 ms
52,524 KB
testcase_10 AC 109 ms
54,208 KB
testcase_11 AC 114 ms
53,912 KB
testcase_12 AC 110 ms
53,780 KB
testcase_13 AC 101 ms
52,860 KB
testcase_14 AC 112 ms
53,876 KB
testcase_15 AC 101 ms
52,688 KB
testcase_16 AC 112 ms
53,708 KB
testcase_17 AC 108 ms
53,728 KB
testcase_18 AC 107 ms
53,440 KB
testcase_19 AC 117 ms
53,748 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