結果

問題 No.104 国道
ユーザー jin128jin128
提出日時 2016-08-29 17:30:59
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 405 bytes
コンパイル時間 2,205 ms
コンパイル使用メモリ 74,252 KB
実行使用メモリ 54,176 KB
最終ジャッジ日時 2024-11-14 06:47:58
合計ジャッジ時間 5,558 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
54,152 KB
testcase_01 AC 121 ms
54,100 KB
testcase_02 AC 122 ms
54,120 KB
testcase_03 RE -
testcase_04 AC 123 ms
53,864 KB
testcase_05 AC 122 ms
54,176 KB
testcase_06 AC 120 ms
53,856 KB
testcase_07 AC 122 ms
53,928 KB
testcase_08 AC 119 ms
54,048 KB
testcase_09 AC 109 ms
52,976 KB
testcase_10 AC 124 ms
54,128 KB
testcase_11 AC 121 ms
53,992 KB
testcase_12 AC 123 ms
54,116 KB
testcase_13 AC 123 ms
54,008 KB
testcase_14 AC 122 ms
54,088 KB
testcase_15 AC 122 ms
54,020 KB
testcase_16 AC 118 ms
53,832 KB
testcase_17 AC 125 ms
54,148 KB
testcase_18 AC 122 ms
53,856 KB
testcase_19 AC 122 ms
54,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class S24_route{
  public static void main(String[] args){
    int route = 1;
    String c[] = new String[30];
    Scanner scn = new Scanner(System.in);

    c = scn.next().split("");

    for(int i = 0; i < c.length; i++){
      if("L".equals(c[i])){
        route *= 2;
      }else{
        route *= 2;
        route += 1;
      }
    }

    System.out.println(route);

  }
}
0