結果

問題 No.104 国道
ユーザー r.suzukir.suzuki
提出日時 2016-01-09 20:57:02
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 339 bytes
コンパイル時間 2,997 ms
コンパイル使用メモリ 74,812 KB
実行使用メモリ 41,356 KB
最終ジャッジ日時 2024-09-19 13:18:49
合計ジャッジ時間 6,009 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
40,348 KB
testcase_01 AC 113 ms
41,112 KB
testcase_02 AC 116 ms
41,356 KB
testcase_03 RE -
testcase_04 AC 112 ms
40,904 KB
testcase_05 AC 104 ms
39,884 KB
testcase_06 AC 122 ms
41,144 KB
testcase_07 AC 115 ms
41,192 KB
testcase_08 AC 112 ms
41,104 KB
testcase_09 AC 119 ms
40,952 KB
testcase_10 AC 110 ms
40,776 KB
testcase_11 AC 99 ms
39,952 KB
testcase_12 AC 98 ms
40,056 KB
testcase_13 AC 103 ms
41,140 KB
testcase_14 AC 111 ms
40,872 KB
testcase_15 AC 96 ms
39,752 KB
testcase_16 AC 111 ms
41,008 KB
testcase_17 AC 93 ms
39,752 KB
testcase_18 AC 112 ms
41,176 KB
testcase_19 AC 110 ms
41,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

public class No_104 {

	public static void main(String[] args) {
		java.util.Scanner sc = new java.util.Scanner(System.in);
		char[] LorR = sc.next().toCharArray();
		int root = 1;

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

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

	}

}
0