結果

問題 No.104 国道
ユーザー k_kadorak_kadora
提出日時 2015-05-24 09:10:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 108 ms / 5,000 ms
コード長 354 bytes
コンパイル時間 2,904 ms
コンパイル使用メモリ 74,400 KB
実行使用メモリ 41,460 KB
最終ジャッジ日時 2024-07-06 06:38:20
合計ジャッジ時間 5,378 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 96 ms
40,928 KB
testcase_01 AC 108 ms
40,980 KB
testcase_02 AC 99 ms
41,460 KB
testcase_03 AC 101 ms
41,052 KB
testcase_04 AC 100 ms
41,184 KB
testcase_05 AC 96 ms
40,988 KB
testcase_06 AC 107 ms
40,772 KB
testcase_07 AC 98 ms
40,896 KB
testcase_08 AC 92 ms
40,852 KB
testcase_09 AC 89 ms
40,448 KB
testcase_10 AC 95 ms
40,932 KB
testcase_11 AC 95 ms
40,980 KB
testcase_12 AC 86 ms
40,040 KB
testcase_13 AC 95 ms
40,872 KB
testcase_14 AC 94 ms
41,244 KB
testcase_15 AC 95 ms
41,420 KB
testcase_16 AC 87 ms
40,340 KB
testcase_17 AC 94 ms
41,232 KB
testcase_18 AC 87 ms
40,168 KB
testcase_19 AC 97 ms
40,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Road{
	public static void main(String[] arg){
		Scanner sc = new Scanner(System.in);
		int n=0,res=1;
		String in="";
		if(sc.hasNext()){
			in = sc.next();
			n = in.length();
		}
		for(int i = 0;i<n;i++){
			if(in.charAt(i) == 'R'){
				res = res*2+1;
			}else{
				res = res*2;
			}
		}
		System.out.println(res);
	}
}
0