結果

問題 No.104 国道
ユーザー tentententen
提出日時 2020-11-10 15:37:02
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 395 bytes
コンパイル時間 2,574 ms
コンパイル使用メモリ 74,760 KB
実行使用メモリ 53,608 KB
最終ジャッジ日時 2024-07-22 17:32:04
合計ジャッジ時間 5,610 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,032 KB
testcase_01 AC 127 ms
41,168 KB
testcase_02 AC 129 ms
41,440 KB
testcase_03 RE -
testcase_04 AC 113 ms
40,100 KB
testcase_05 AC 128 ms
41,364 KB
testcase_06 AC 131 ms
41,284 KB
testcase_07 AC 126 ms
41,300 KB
testcase_08 AC 129 ms
41,716 KB
testcase_09 AC 126 ms
41,204 KB
testcase_10 AC 113 ms
40,212 KB
testcase_11 AC 129 ms
41,212 KB
testcase_12 AC 128 ms
41,144 KB
testcase_13 AC 129 ms
41,048 KB
testcase_14 AC 128 ms
41,224 KB
testcase_15 AC 126 ms
41,052 KB
testcase_16 AC 132 ms
41,148 KB
testcase_17 AC 129 ms
41,052 KB
testcase_18 AC 113 ms
40,280 KB
testcase_19 AC 128 ms
41,436 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int current = 1;
        for (char c : sc.next().toCharArray()) {
            if (c == 'L') {
                current *= 2;
            } else {
                current = current * 2 + 1;
            }
        }
        System.out.println(current);
    }
}
0