結果

問題 No.104 国道
ユーザー dazydazy
提出日時 2016-09-12 02:03:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 53 ms / 5,000 ms
コード長 403 bytes
コンパイル時間 3,925 ms
コンパイル使用メモリ 74,176 KB
実行使用メモリ 37,044 KB
最終ジャッジ日時 2024-11-17 03:44:34
合計ジャッジ時間 5,682 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
36,556 KB
testcase_01 AC 52 ms
36,884 KB
testcase_02 AC 52 ms
36,532 KB
testcase_03 AC 51 ms
37,000 KB
testcase_04 AC 52 ms
36,748 KB
testcase_05 AC 52 ms
36,488 KB
testcase_06 AC 53 ms
36,960 KB
testcase_07 AC 52 ms
36,532 KB
testcase_08 AC 52 ms
36,652 KB
testcase_09 AC 53 ms
36,736 KB
testcase_10 AC 51 ms
36,532 KB
testcase_11 AC 52 ms
37,044 KB
testcase_12 AC 53 ms
36,392 KB
testcase_13 AC 53 ms
36,652 KB
testcase_14 AC 53 ms
36,708 KB
testcase_15 AC 51 ms
36,644 KB
testcase_16 AC 52 ms
36,516 KB
testcase_17 AC 52 ms
36,916 KB
testcase_18 AC 52 ms
37,044 KB
testcase_19 AC 53 ms
36,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;

public class Run {
    public static void main (String arg[]) throws IOException {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String S = br.readLine();
        int Road = 1;
        for (int i = 0; i < S.length(); i++) {
            Road *= 2;
            if (S.charAt(i)=='R') Road++;
        }
        System.out.println(Road);
    }
}
0