結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
41,028 KB
testcase_01 AC 111 ms
41,148 KB
testcase_02 AC 102 ms
40,260 KB
testcase_03 AC 101 ms
40,208 KB
testcase_04 AC 115 ms
40,900 KB
testcase_05 AC 104 ms
40,388 KB
testcase_06 AC 113 ms
41,144 KB
testcase_07 AC 111 ms
41,040 KB
testcase_08 AC 100 ms
39,704 KB
testcase_09 AC 108 ms
40,996 KB
testcase_10 AC 104 ms
39,892 KB
testcase_11 AC 104 ms
39,976 KB
testcase_12 AC 110 ms
41,164 KB
testcase_13 AC 99 ms
39,756 KB
testcase_14 AC 101 ms
39,992 KB
testcase_15 AC 102 ms
40,140 KB
testcase_16 AC 113 ms
41,020 KB
testcase_17 AC 111 ms
41,008 KB
testcase_18 AC 112 ms
41,180 KB
testcase_19 AC 111 ms
40,932 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