結果

問題 No.104 国道
ユーザー jin128jin128
提出日時 2016-08-29 17:30:59
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 405 bytes
コンパイル時間 2,293 ms
コンパイル使用メモリ 74,248 KB
実行使用メモリ 53,720 KB
最終ジャッジ日時 2024-04-26 17:19:05
合計ジャッジ時間 5,263 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
41,296 KB
testcase_01 AC 117 ms
41,108 KB
testcase_02 AC 119 ms
41,624 KB
testcase_03 RE -
testcase_04 AC 123 ms
41,132 KB
testcase_05 AC 121 ms
41,140 KB
testcase_06 AC 113 ms
40,936 KB
testcase_07 AC 111 ms
40,696 KB
testcase_08 AC 109 ms
40,212 KB
testcase_09 AC 122 ms
41,448 KB
testcase_10 AC 117 ms
41,716 KB
testcase_11 AC 121 ms
41,128 KB
testcase_12 AC 121 ms
41,416 KB
testcase_13 AC 126 ms
41,300 KB
testcase_14 AC 120 ms
41,284 KB
testcase_15 AC 120 ms
40,972 KB
testcase_16 AC 119 ms
41,000 KB
testcase_17 AC 107 ms
40,448 KB
testcase_18 AC 107 ms
40,072 KB
testcase_19 AC 122 ms
41,444 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