結果

問題 No.104 国道
ユーザー SuunnSuunn
提出日時 2018-11-20 06:16:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 113 ms / 5,000 ms
コード長 396 bytes
コンパイル時間 1,941 ms
コンパイル使用メモリ 74,344 KB
実行使用メモリ 41,472 KB
最終ジャッジ日時 2024-06-06 21:06:45
合計ジャッジ時間 4,763 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 93 ms
40,868 KB
testcase_01 AC 108 ms
41,248 KB
testcase_02 AC 95 ms
41,348 KB
testcase_03 AC 112 ms
41,088 KB
testcase_04 AC 108 ms
41,464 KB
testcase_05 AC 103 ms
41,040 KB
testcase_06 AC 106 ms
41,096 KB
testcase_07 AC 110 ms
41,096 KB
testcase_08 AC 97 ms
41,264 KB
testcase_09 AC 105 ms
39,832 KB
testcase_10 AC 113 ms
40,216 KB
testcase_11 AC 112 ms
41,228 KB
testcase_12 AC 100 ms
41,352 KB
testcase_13 AC 98 ms
41,124 KB
testcase_14 AC 113 ms
39,956 KB
testcase_15 AC 96 ms
39,956 KB
testcase_16 AC 109 ms
40,868 KB
testcase_17 AC 108 ms
41,472 KB
testcase_18 AC 105 ms
40,804 KB
testcase_19 AC 103 ms
41,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
	

public class Main{
	
	
	public static void main(String args[])throws Exception{
		try{
		Scanner sc = new Scanner(System.in);
		String S = sc.next();
		int pla = 1;
		for(int i=0;i<S.length();i++){
			if(S.charAt(i)=='L'){
				pla *= 2;
			}else{
				pla = pla * 2 + 1;
			}
		}
		System.out.println(pla);
		}catch(Exception e){
			System.out.println(1);
		}
	}
	

}
0