結果

問題 No.104 国道
ユーザー きつねうどんきつねうどん
提出日時 2023-12-15 23:52:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 5,000 ms
コード長 510 bytes
コンパイル時間 4,928 ms
コンパイル使用メモリ 74,660 KB
実行使用メモリ 54,336 KB
最終ジャッジ日時 2024-09-27 06:42:12
合計ジャッジ時間 8,872 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
54,336 KB
testcase_01 AC 129 ms
53,744 KB
testcase_02 AC 131 ms
53,968 KB
testcase_03 AC 129 ms
53,928 KB
testcase_04 AC 130 ms
54,088 KB
testcase_05 AC 129 ms
53,976 KB
testcase_06 AC 130 ms
53,992 KB
testcase_07 AC 132 ms
53,940 KB
testcase_08 AC 131 ms
54,080 KB
testcase_09 AC 128 ms
54,228 KB
testcase_10 AC 130 ms
54,004 KB
testcase_11 AC 128 ms
54,000 KB
testcase_12 AC 128 ms
54,064 KB
testcase_13 AC 130 ms
53,964 KB
testcase_14 AC 131 ms
53,952 KB
testcase_15 AC 130 ms
54,116 KB
testcase_16 AC 130 ms
53,972 KB
testcase_17 AC 131 ms
53,728 KB
testcase_18 AC 131 ms
53,948 KB
testcase_19 AC 128 ms
53,864 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;
        for (String s : strArray) {
            if (s.equals("L")) {
                number = number * 2;
            }
            if (s.equals("R")) {
                number = number * 2 + 1;
            }
        }
        System.out.println(number);
    }
}
0