結果

問題 No.104 国道
ユーザー chiho_miyakochiho_miyako
提出日時 2015-04-07 14:27:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 122 ms / 5,000 ms
コード長 559 bytes
コンパイル時間 3,091 ms
コンパイル使用メモリ 83,744 KB
実行使用メモリ 54,388 KB
最終ジャッジ日時 2024-07-04 10:43:37
合計ジャッジ時間 6,564 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
52,976 KB
testcase_01 AC 120 ms
53,908 KB
testcase_02 AC 110 ms
52,932 KB
testcase_03 AC 121 ms
54,040 KB
testcase_04 AC 120 ms
53,884 KB
testcase_05 AC 117 ms
53,824 KB
testcase_06 AC 118 ms
54,032 KB
testcase_07 AC 119 ms
53,900 KB
testcase_08 AC 122 ms
54,208 KB
testcase_09 AC 117 ms
53,880 KB
testcase_10 AC 121 ms
54,096 KB
testcase_11 AC 121 ms
54,048 KB
testcase_12 AC 107 ms
52,904 KB
testcase_13 AC 118 ms
53,948 KB
testcase_14 AC 119 ms
54,388 KB
testcase_15 AC 119 ms
53,992 KB
testcase_16 AC 122 ms
53,888 KB
testcase_17 AC 121 ms
53,888 KB
testcase_18 AC 120 ms
54,296 KB
testcase_19 AC 108 ms
52,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner koko = new Scanner(System.in);
        String a = koko.nextLine();
        int now=1;
        if(a.length()==0){
            now = 1;
        }else{
           char[] b = a.toCharArray();
           for(int i=0; i<b.length; i++){
               if(b[i]=='L'){
                   now = now*2;
               }else{
                   now = 1+now*2;
               }
            } 
        }
        
        System.out.println(now);
    }
}
0