結果

問題 No.104 国道
ユーザー きつねうどんきつねうどん
提出日時 2023-12-15 23:49:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 5,000 ms
コード長 616 bytes
コンパイル時間 6,163 ms
コンパイル使用メモリ 82,836 KB
実行使用メモリ 41,492 KB
最終ジャッジ日時 2024-09-27 06:42:00
合計ジャッジ時間 8,430 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
40,788 KB
testcase_01 AC 133 ms
41,268 KB
testcase_02 AC 134 ms
41,152 KB
testcase_03 AC 132 ms
40,852 KB
testcase_04 AC 133 ms
40,788 KB
testcase_05 AC 135 ms
41,192 KB
testcase_06 AC 138 ms
40,620 KB
testcase_07 AC 131 ms
40,884 KB
testcase_08 AC 134 ms
40,924 KB
testcase_09 AC 133 ms
40,812 KB
testcase_10 AC 134 ms
41,076 KB
testcase_11 AC 123 ms
41,176 KB
testcase_12 AC 135 ms
40,824 KB
testcase_13 AC 134 ms
40,972 KB
testcase_14 AC 136 ms
40,992 KB
testcase_15 AC 133 ms
40,948 KB
testcase_16 AC 133 ms
41,100 KB
testcase_17 AC 134 ms
41,232 KB
testcase_18 AC 133 ms
41,492 KB
testcase_19 AC 133 ms
41,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Highway {
    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);
        String S = scanner.nextLine();
        String[] strArray = S.split("");
        int number = 1;
        if (strArray.length == 0) {
            System.out.println(number);
            return;
        }
        for (String s : strArray) {
            if (s.equals("L")) {
                number = number * 2;
            }
            if (s.equals("R")) {
                number = number * 2 + 1;
            }
        }
        System.out.println(number);
    }
}
0