結果

問題 No.104 国道
ユーザー syusyu
提出日時 2020-08-28 19:29:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 5,000 ms
コード長 553 bytes
コンパイル時間 3,259 ms
コンパイル使用メモリ 74,816 KB
実行使用メモリ 55,916 KB
最終ジャッジ日時 2024-11-13 23:40:26
合計ジャッジ時間 5,930 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
54,024 KB
testcase_01 AC 136 ms
53,844 KB
testcase_02 AC 133 ms
54,124 KB
testcase_03 AC 131 ms
53,680 KB
testcase_04 AC 136 ms
53,996 KB
testcase_05 AC 136 ms
53,872 KB
testcase_06 AC 130 ms
54,032 KB
testcase_07 AC 131 ms
54,020 KB
testcase_08 AC 133 ms
53,988 KB
testcase_09 AC 133 ms
55,916 KB
testcase_10 AC 132 ms
53,872 KB
testcase_11 AC 132 ms
53,764 KB
testcase_12 AC 132 ms
54,056 KB
testcase_13 AC 131 ms
54,084 KB
testcase_14 AC 133 ms
54,148 KB
testcase_15 AC 132 ms
54,196 KB
testcase_16 AC 131 ms
54,180 KB
testcase_17 AC 134 ms
54,068 KB
testcase_18 AC 132 ms
54,220 KB
testcase_19 AC 135 ms
54,084 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