結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
41,140 KB
testcase_01 AC 101 ms
39,756 KB
testcase_02 AC 114 ms
41,032 KB
testcase_03 RE -
testcase_04 AC 112 ms
41,000 KB
testcase_05 AC 107 ms
41,000 KB
testcase_06 AC 111 ms
40,916 KB
testcase_07 AC 110 ms
40,988 KB
testcase_08 AC 114 ms
41,156 KB
testcase_09 AC 109 ms
40,972 KB
testcase_10 AC 105 ms
41,284 KB
testcase_11 AC 97 ms
40,024 KB
testcase_12 AC 108 ms
40,728 KB
testcase_13 AC 114 ms
41,008 KB
testcase_14 AC 109 ms
40,984 KB
testcase_15 AC 102 ms
40,664 KB
testcase_16 AC 96 ms
40,080 KB
testcase_17 AC 109 ms
41,180 KB
testcase_18 AC 108 ms
41,028 KB
testcase_19 AC 108 ms
41,272 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