結果

問題 No.104 国道
ユーザー matsuyoshi30matsuyoshi30
提出日時 2016-02-05 19:48:03
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 342 bytes
コンパイル時間 2,068 ms
コンパイル使用メモリ 74,108 KB
実行使用メモリ 54,316 KB
最終ジャッジ日時 2024-09-21 20:37:57
合計ジャッジ時間 5,379 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
54,172 KB
testcase_01 AC 127 ms
54,196 KB
testcase_02 AC 128 ms
54,188 KB
testcase_03 RE -
testcase_04 AC 127 ms
54,108 KB
testcase_05 AC 118 ms
54,212 KB
testcase_06 AC 130 ms
53,840 KB
testcase_07 AC 128 ms
54,052 KB
testcase_08 AC 129 ms
54,020 KB
testcase_09 AC 126 ms
53,956 KB
testcase_10 AC 126 ms
54,316 KB
testcase_11 AC 130 ms
53,944 KB
testcase_12 AC 130 ms
54,228 KB
testcase_13 AC 130 ms
53,852 KB
testcase_14 AC 125 ms
54,028 KB
testcase_15 AC 126 ms
54,244 KB
testcase_16 AC 125 ms
54,172 KB
testcase_17 AC 127 ms
54,152 KB
testcase_18 AC 127 ms
54,092 KB
testcase_19 AC 127 ms
53,908 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;
		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