結果

問題 No.104 国道
ユーザー dazydazy
提出日時 2016-09-11 03:41:45
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 370 bytes
コンパイル時間 3,035 ms
コンパイル使用メモリ 74,388 KB
実行使用メモリ 41,424 KB
最終ジャッジ日時 2024-11-17 00:15:28
合計ジャッジ時間 6,152 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
41,396 KB
testcase_01 AC 97 ms
39,788 KB
testcase_02 AC 109 ms
41,216 KB
testcase_03 RE -
testcase_04 AC 100 ms
39,768 KB
testcase_05 AC 114 ms
41,160 KB
testcase_06 AC 105 ms
39,832 KB
testcase_07 AC 114 ms
41,080 KB
testcase_08 AC 113 ms
41,088 KB
testcase_09 AC 114 ms
41,424 KB
testcase_10 AC 118 ms
41,184 KB
testcase_11 AC 107 ms
40,152 KB
testcase_12 AC 118 ms
40,704 KB
testcase_13 AC 114 ms
40,952 KB
testcase_14 AC 99 ms
40,152 KB
testcase_15 AC 113 ms
41,080 KB
testcase_16 AC 117 ms
40,896 KB
testcase_17 AC 117 ms
40,808 KB
testcase_18 AC 105 ms
39,640 KB
testcase_19 AC 122 ms
40,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Run {
    public static void main (String arg[]) {
        Scanner scan = new Scanner(System.in);
        String S = scan.next();
        int Road = 1;
        for (int i = 0; i < S.length(); i++) {
            if (S.charAt(i)=='L') Road = Road*2;
            else Road = Road*2 + 1;
        }
        System.out.println(Road);
    }
}
0