結果

問題 No.104 国道
ユーザー r.suzukir.suzuki
提出日時 2016-01-09 21:01:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 5,000 ms
コード長 415 bytes
コンパイル時間 3,386 ms
コンパイル使用メモリ 74,528 KB
実行使用メモリ 41,628 KB
最終ジャッジ日時 2024-09-19 13:19:05
合計ジャッジ時間 6,861 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
41,268 KB
testcase_01 AC 107 ms
41,268 KB
testcase_02 AC 118 ms
40,920 KB
testcase_03 AC 125 ms
41,628 KB
testcase_04 AC 119 ms
41,160 KB
testcase_05 AC 119 ms
40,996 KB
testcase_06 AC 118 ms
40,864 KB
testcase_07 AC 118 ms
40,968 KB
testcase_08 AC 121 ms
41,088 KB
testcase_09 AC 110 ms
40,064 KB
testcase_10 AC 122 ms
41,112 KB
testcase_11 AC 123 ms
41,284 KB
testcase_12 AC 124 ms
41,456 KB
testcase_13 AC 119 ms
40,924 KB
testcase_14 AC 118 ms
41,276 KB
testcase_15 AC 120 ms
41,020 KB
testcase_16 AC 120 ms
41,284 KB
testcase_17 AC 121 ms
41,024 KB
testcase_18 AC 120 ms
41,008 KB
testcase_19 AC 109 ms
40,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

public class No_104 {

	public static void main(String[] args) {
		java.util.Scanner sc = new java.util.Scanner(System.in);
		int root = 1;
		if (!sc.hasNext()) {
			System.out.println(root);
			System.exit(0);
		}

		char[] LorR = sc.next().toCharArray();

		for (char c : LorR) {
			if (c == 'L')
				root *= 2;
			else if (c == 'R')
				root = root * 2 + 1;
		}

		System.out.println(root);
		sc.close();

	}

}
0