結果

問題 No.104 国道
ユーザー kenji_shioyakenji_shioya
提出日時 2016-06-25 17:17:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 56 ms / 5,000 ms
コード長 439 bytes
コンパイル時間 3,591 ms
コンパイル使用メモリ 74,364 KB
実行使用メモリ 50,260 KB
最終ジャッジ日時 2024-10-11 21:59:49
合計ジャッジ時間 5,449 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
49,960 KB
testcase_01 AC 56 ms
49,996 KB
testcase_02 AC 54 ms
50,116 KB
testcase_03 AC 53 ms
50,200 KB
testcase_04 AC 53 ms
50,148 KB
testcase_05 AC 55 ms
50,164 KB
testcase_06 AC 54 ms
50,156 KB
testcase_07 AC 54 ms
50,260 KB
testcase_08 AC 54 ms
50,236 KB
testcase_09 AC 53 ms
50,124 KB
testcase_10 AC 53 ms
50,064 KB
testcase_11 AC 54 ms
49,804 KB
testcase_12 AC 54 ms
50,172 KB
testcase_13 AC 55 ms
50,228 KB
testcase_14 AC 54 ms
50,096 KB
testcase_15 AC 55 ms
49,848 KB
testcase_16 AC 54 ms
50,164 KB
testcase_17 AC 54 ms
50,200 KB
testcase_18 AC 54 ms
49,880 KB
testcase_19 AC 56 ms
50,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

public class Exercise124{
  public static void main (String[] args) throws IOException{

    BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
    String s = new String(in.readLine());
    char[] sa = s.toCharArray();
    int a = 1;
    for(int lOrR: sa){
      if(lOrR == 'L'){
        a *= 2;
      }else{
        a = a * 2 + 1;
      }
    }
    System.out.println(a);
	}
}
0