結果

問題 No.104 国道
ユーザー TwinkleStar74TwinkleStar74
提出日時 2017-10-24 15:53:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 48 ms / 5,000 ms
コード長 656 bytes
コンパイル時間 3,087 ms
コンパイル使用メモリ 73,132 KB
実行使用メモリ 40,812 KB
最終ジャッジ日時 2024-11-21 17:38:12
合計ジャッジ時間 4,804 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
36,856 KB
testcase_01 AC 46 ms
36,812 KB
testcase_02 AC 47 ms
36,732 KB
testcase_03 AC 47 ms
36,948 KB
testcase_04 AC 46 ms
37,020 KB
testcase_05 AC 47 ms
37,000 KB
testcase_06 AC 48 ms
37,008 KB
testcase_07 AC 46 ms
36,984 KB
testcase_08 AC 47 ms
36,488 KB
testcase_09 AC 47 ms
36,864 KB
testcase_10 AC 47 ms
36,908 KB
testcase_11 AC 47 ms
36,576 KB
testcase_12 AC 46 ms
36,912 KB
testcase_13 AC 47 ms
40,812 KB
testcase_14 AC 48 ms
36,908 KB
testcase_15 AC 48 ms
37,128 KB
testcase_16 AC 48 ms
37,128 KB
testcase_17 AC 48 ms
37,020 KB
testcase_18 AC 48 ms
36,820 KB
testcase_19 AC 48 ms
37,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;

public class No104{
    public static void main(String[] args) throws IOException{
        String str = new BufferedReader(new InputStreamReader(System.in)).readLine();
        if(str == null){
            System.out.println(1);
            return;
        }
        else{
            char[] direction = str.toCharArray();
            long roadNum = 1;
            System.out.println(calc(roadNum, direction));
        }
    }
     
    public static long calc(long a, char[] b){
        for(int i=0; i < b.length; i++){
            if(b[i] == 'R') a = (a * 2) + 1;
            if(b[i] == 'L') a *= 2;
        }
        return a;
    }
}
0