結果

問題 No.104 国道
ユーザー ほげ太郎ほげ太郎
提出日時 2018-02-23 09:36:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 5,000 ms
コード長 375 bytes
コンパイル時間 1,770 ms
コンパイル使用メモリ 73,852 KB
実行使用メモリ 41,260 KB
最終ジャッジ日時 2024-10-06 11:37:51
合計ジャッジ時間 4,769 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
40,796 KB
testcase_01 AC 108 ms
40,832 KB
testcase_02 AC 98 ms
39,788 KB
testcase_03 AC 97 ms
39,992 KB
testcase_04 AC 109 ms
40,936 KB
testcase_05 AC 101 ms
39,864 KB
testcase_06 AC 100 ms
40,004 KB
testcase_07 AC 111 ms
40,972 KB
testcase_08 AC 115 ms
41,260 KB
testcase_09 AC 115 ms
41,020 KB
testcase_10 AC 113 ms
41,004 KB
testcase_11 AC 115 ms
41,016 KB
testcase_12 AC 110 ms
41,204 KB
testcase_13 AC 114 ms
40,944 KB
testcase_14 AC 114 ms
41,044 KB
testcase_15 AC 115 ms
40,956 KB
testcase_16 AC 136 ms
41,048 KB
testcase_17 AC 102 ms
40,064 KB
testcase_18 AC 107 ms
41,112 KB
testcase_19 AC 100 ms
40,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        String iStr = sc.nextLine();

        long route = 1;
        for (int i = 0; i < iStr.length(); i++) {
            route <<= 1;
            if (iStr.charAt(i) == 'R') route++;
        }
        System.out.println(route);
    }
}
0