結果

問題 No.104 国道
ユーザー kou6839kou6839
提出日時 2014-12-20 13:04:04
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 410 bytes
コンパイル時間 2,089 ms
コンパイル使用メモリ 74,260 KB
実行使用メモリ 54,020 KB
最終ジャッジ日時 2024-06-12 02:27:06
合計ジャッジ時間 5,618 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,092 KB
testcase_01 AC 129 ms
41,200 KB
testcase_02 AC 128 ms
41,040 KB
testcase_03 RE -
testcase_04 AC 128 ms
40,780 KB
testcase_05 AC 124 ms
41,040 KB
testcase_06 AC 128 ms
40,952 KB
testcase_07 AC 131 ms
41,032 KB
testcase_08 AC 126 ms
41,180 KB
testcase_09 AC 126 ms
40,784 KB
testcase_10 AC 127 ms
41,404 KB
testcase_11 AC 127 ms
40,964 KB
testcase_12 AC 126 ms
41,004 KB
testcase_13 AC 129 ms
40,952 KB
testcase_14 AC 127 ms
40,800 KB
testcase_15 AC 124 ms
41,076 KB
testcase_16 AC 128 ms
41,012 KB
testcase_17 AC 126 ms
40,796 KB
testcase_18 AC 127 ms
41,060 KB
testcase_19 AC 128 ms
41,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.*;
import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        sc.useDelimiter("\n");
        String s = sc.next();
        int ans = 1;
        for(int i=0;i<s.length();i++){
        	if(s.charAt(i)=='L') ans *=2;
        	else if(s.charAt(i)=='R')ans = ans*2+1;
        }
        System.out.println(ans);
    }
}
0