結果

問題 No.104 国道
ユーザー fkwnw3_1243fkwnw3_1243
提出日時 2017-04-27 21:56:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 69 ms / 5,000 ms
コード長 571 bytes
コンパイル時間 2,351 ms
コンパイル使用メモリ 75,676 KB
実行使用メモリ 50,372 KB
最終ジャッジ日時 2024-09-13 14:53:38
合計ジャッジ時間 4,485 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
50,056 KB
testcase_01 AC 55 ms
50,272 KB
testcase_02 AC 54 ms
50,288 KB
testcase_03 AC 54 ms
50,372 KB
testcase_04 AC 54 ms
50,020 KB
testcase_05 AC 55 ms
49,952 KB
testcase_06 AC 56 ms
50,120 KB
testcase_07 AC 55 ms
49,860 KB
testcase_08 AC 69 ms
50,272 KB
testcase_09 AC 54 ms
50,288 KB
testcase_10 AC 54 ms
50,348 KB
testcase_11 AC 55 ms
50,160 KB
testcase_12 AC 54 ms
50,320 KB
testcase_13 AC 53 ms
50,260 KB
testcase_14 AC 54 ms
50,364 KB
testcase_15 AC 54 ms
49,692 KB
testcase_16 AC 54 ms
50,104 KB
testcase_17 AC 54 ms
50,088 KB
testcase_18 AC 54 ms
49,804 KB
testcase_19 AC 54 ms
50,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class Main {
    public static void main(String[] args) throws IOException {
        BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
        String S = reader.readLine();
        int route = 1;
        for (int i = 0; i < S.length(); i++) {
            if (S.charAt(i) == 'L') {
                route = route * 2;
            } else {
                route = route * 2 +1;
            }
        }
        System.out.println(route);
    }
}
0