結果

問題 No.104 国道
ユーザー Natsume-MNatsume-M
提出日時 2016-11-28 15:46:15
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 343 bytes
コンパイル時間 2,112 ms
コンパイル使用メモリ 73,996 KB
実行使用メモリ 41,372 KB
最終ジャッジ日時 2024-05-05 14:36:54
合計ジャッジ時間 5,223 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
40,932 KB
testcase_01 AC 132 ms
41,196 KB
testcase_02 AC 132 ms
41,088 KB
testcase_03 RE -
testcase_04 AC 115 ms
40,032 KB
testcase_05 AC 103 ms
40,756 KB
testcase_06 AC 94 ms
39,796 KB
testcase_07 AC 101 ms
41,092 KB
testcase_08 AC 103 ms
40,960 KB
testcase_09 AC 102 ms
40,948 KB
testcase_10 AC 110 ms
41,048 KB
testcase_11 AC 111 ms
40,972 KB
testcase_12 AC 111 ms
39,868 KB
testcase_13 AC 108 ms
40,768 KB
testcase_14 AC 106 ms
41,080 KB
testcase_15 AC 106 ms
41,272 KB
testcase_16 AC 103 ms
41,092 KB
testcase_17 AC 95 ms
40,108 KB
testcase_18 AC 105 ms
41,128 KB
testcase_19 AC 100 ms
39,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
class y46 {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        String s = sc.next();
        int r = 1;
        for (int i=0; i<s.length(); i++) {
	        if (s.charAt(i)=='L')	r*=2;
        	else if (s.charAt(i)=='R')r=r*2+1;
        }
        System.out.println(r);
    }
}
0