結果

問題 No.104 国道
ユーザー matsuyoshi30matsuyoshi30
提出日時 2016-02-05 19:53:29
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 385 bytes
コンパイル時間 1,983 ms
コンパイル使用メモリ 74,700 KB
実行使用メモリ 41,424 KB
最終ジャッジ日時 2024-09-21 20:38:33
合計ジャッジ時間 4,893 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
40,132 KB
testcase_01 AC 115 ms
40,980 KB
testcase_02 AC 99 ms
39,688 KB
testcase_03 RE -
testcase_04 AC 101 ms
39,988 KB
testcase_05 AC 109 ms
41,176 KB
testcase_06 AC 113 ms
40,708 KB
testcase_07 AC 117 ms
40,884 KB
testcase_08 AC 110 ms
40,628 KB
testcase_09 AC 111 ms
40,020 KB
testcase_10 AC 113 ms
40,928 KB
testcase_11 AC 111 ms
40,812 KB
testcase_12 AC 114 ms
40,876 KB
testcase_13 AC 97 ms
40,056 KB
testcase_14 AC 104 ms
40,780 KB
testcase_15 AC 102 ms
40,360 KB
testcase_16 AC 110 ms
41,424 KB
testcase_17 AC 100 ms
39,732 KB
testcase_18 AC 114 ms
41,164 KB
testcase_19 AC 103 ms
39,916 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Test {
	public static void main(String[] args) throws Exception {
		Scanner in = new Scanner(System.in);

		char[] s = in.next().toCharArray();
		int n = 1;
		if(s.length == 0) System.out.println(1);
		for(int i=0; i<s.length; i++) {
			if(s[i] == 'L') {
				n += n;
			}
			if(s[i] == 'R') {
				n = n + n + 1;
			}
		}

		System.out.println(n);
	}
}
0