結果

問題 No.104 国道
ユーザー syusyu
提出日時 2020-08-28 19:29:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 5,000 ms
コード長 553 bytes
コンパイル時間 2,055 ms
コンパイル使用メモリ 74,252 KB
実行使用メモリ 41,472 KB
最終ジャッジ日時 2024-04-26 12:28:33
合計ジャッジ時間 5,384 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,132 KB
testcase_01 AC 122 ms
41,460 KB
testcase_02 AC 122 ms
41,224 KB
testcase_03 AC 121 ms
41,144 KB
testcase_04 AC 108 ms
40,192 KB
testcase_05 AC 119 ms
40,728 KB
testcase_06 AC 110 ms
40,640 KB
testcase_07 AC 108 ms
40,192 KB
testcase_08 AC 113 ms
40,360 KB
testcase_09 AC 107 ms
40,192 KB
testcase_10 AC 127 ms
41,028 KB
testcase_11 AC 128 ms
40,964 KB
testcase_12 AC 126 ms
41,228 KB
testcase_13 AC 127 ms
41,436 KB
testcase_14 AC 114 ms
40,928 KB
testcase_15 AC 114 ms
40,144 KB
testcase_16 AC 124 ms
41,220 KB
testcase_17 AC 124 ms
41,472 KB
testcase_18 AC 124 ms
41,064 KB
testcase_19 AC 124 ms
41,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args){
        Scanner sc=new Scanner(System.in);
        try{
            String input=sc.next();
            String[] L_R=input.split("");
            int load=1;
            for(String curb:L_R){
                if(curb.equals("L")){
                    load*=2;
                }else{
                    load=load*2+1;
                }
            }
            System.out.println(load);
        }catch(Exception e){
            System.out.println(1);
        }
    }
}
0