結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
41,196 KB
testcase_01 AC 126 ms
40,932 KB
testcase_02 AC 112 ms
40,708 KB
testcase_03 RE -
testcase_04 AC 100 ms
40,096 KB
testcase_05 AC 117 ms
40,900 KB
testcase_06 AC 103 ms
40,056 KB
testcase_07 AC 112 ms
41,120 KB
testcase_08 AC 114 ms
41,248 KB
testcase_09 AC 99 ms
39,516 KB
testcase_10 AC 113 ms
40,900 KB
testcase_11 AC 113 ms
41,136 KB
testcase_12 AC 114 ms
40,908 KB
testcase_13 AC 116 ms
40,756 KB
testcase_14 AC 118 ms
40,816 KB
testcase_15 AC 115 ms
41,012 KB
testcase_16 AC 115 ms
41,024 KB
testcase_17 AC 111 ms
40,720 KB
testcase_18 AC 112 ms
41,156 KB
testcase_19 AC 111 ms
40,892 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 * 2;
			} else if(s[i] == 'R') {
				n = n * 2 + 1;
			}
		}

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