結果

問題 No.104 国道
ユーザー Natsume-MNatsume-M
提出日時 2016-11-28 15:56:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 111 ms / 5,000 ms
コード長 348 bytes
コンパイル時間 2,155 ms
コンパイル使用メモリ 74,272 KB
実行使用メモリ 41,416 KB
最終ジャッジ日時 2024-05-05 14:37:03
合計ジャッジ時間 4,562 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
40,064 KB
testcase_01 AC 102 ms
40,040 KB
testcase_02 AC 95 ms
40,220 KB
testcase_03 AC 102 ms
39,880 KB
testcase_04 AC 101 ms
40,932 KB
testcase_05 AC 97 ms
40,192 KB
testcase_06 AC 107 ms
39,808 KB
testcase_07 AC 109 ms
41,200 KB
testcase_08 AC 109 ms
41,112 KB
testcase_09 AC 111 ms
41,096 KB
testcase_10 AC 97 ms
40,040 KB
testcase_11 AC 99 ms
40,036 KB
testcase_12 AC 108 ms
40,996 KB
testcase_13 AC 101 ms
40,000 KB
testcase_14 AC 98 ms
40,132 KB
testcase_15 AC 96 ms
40,020 KB
testcase_16 AC 95 ms
39,976 KB
testcase_17 AC 97 ms
40,256 KB
testcase_18 AC 106 ms
41,416 KB
testcase_19 AC 106 ms
40,916 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
class y104 {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        String s = sc.nextLine();
        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