結果

問題 No.104 国道
ユーザー SuunnSuunn
提出日時 2018-11-20 06:13:21
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 339 bytes
コンパイル時間 1,799 ms
コンパイル使用メモリ 74,440 KB
実行使用メモリ 54,100 KB
最終ジャッジ日時 2024-06-06 21:06:39
合計ジャッジ時間 4,862 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
52,604 KB
testcase_01 AC 97 ms
52,508 KB
testcase_02 AC 96 ms
52,444 KB
testcase_03 RE -
testcase_04 AC 106 ms
53,832 KB
testcase_05 AC 106 ms
53,680 KB
testcase_06 AC 96 ms
52,576 KB
testcase_07 AC 106 ms
53,836 KB
testcase_08 AC 93 ms
52,336 KB
testcase_09 AC 96 ms
52,964 KB
testcase_10 AC 107 ms
53,608 KB
testcase_11 AC 99 ms
52,796 KB
testcase_12 AC 107 ms
53,832 KB
testcase_13 AC 109 ms
53,876 KB
testcase_14 AC 109 ms
54,100 KB
testcase_15 AC 109 ms
53,760 KB
testcase_16 AC 99 ms
52,504 KB
testcase_17 AC 111 ms
54,076 KB
testcase_18 AC 105 ms
53,744 KB
testcase_19 AC 106 ms
54,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
	

public class Main{
	
	
	public static void main(String args[])throws Exception{
		
		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);
		
	}
}
0