結果

問題 No.104 国道
ユーザー キョウチクキョウチク
提出日時 2022-05-19 11:30:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 120 ms / 5,000 ms
コード長 382 bytes
コンパイル時間 3,925 ms
コンパイル使用メモリ 74,700 KB
実行使用メモリ 54,372 KB
最終ジャッジ日時 2024-09-17 17:10:39
合計ジャッジ時間 5,694 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
53,148 KB
testcase_01 AC 101 ms
54,024 KB
testcase_02 AC 87 ms
52,656 KB
testcase_03 AC 104 ms
53,896 KB
testcase_04 AC 120 ms
54,140 KB
testcase_05 AC 119 ms
53,964 KB
testcase_06 AC 105 ms
54,068 KB
testcase_07 AC 119 ms
54,024 KB
testcase_08 AC 104 ms
54,008 KB
testcase_09 AC 103 ms
53,748 KB
testcase_10 AC 105 ms
54,372 KB
testcase_11 AC 101 ms
53,836 KB
testcase_12 AC 102 ms
54,288 KB
testcase_13 AC 93 ms
53,068 KB
testcase_14 AC 101 ms
53,920 KB
testcase_15 AC 110 ms
54,008 KB
testcase_16 AC 115 ms
54,104 KB
testcase_17 AC 113 ms
54,052 KB
testcase_18 AC 105 ms
53,108 KB
testcase_19 AC 118 ms
54,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Test11 {
  public static void main(String[] args){
    Scanner sc=new Scanner(System.in);
    String[] line;
    line=sc.nextLine().split(" ");
    int n=line[0].length();
    int route=1;
    for(int i=0;i<n;i++){
      route*=2;
      if(line[0].charAt(i)=='R'){
        route++;
      }
    }
    System.out.println(route);
    sc.close();
  }
}
0