結果

問題 No.104 国道
ユーザー YatsukuYatsuku
提出日時 2015-12-12 03:10:13
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 359 bytes
コンパイル時間 1,946 ms
コンパイル使用メモリ 74,080 KB
実行使用メモリ 41,472 KB
最終ジャッジ日時 2024-09-15 08:35:03
合計ジャッジ時間 5,332 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
41,100 KB
testcase_01 AC 122 ms
41,472 KB
testcase_02 AC 109 ms
41,300 KB
testcase_03 RE -
testcase_04 AC 123 ms
41,344 KB
testcase_05 AC 122 ms
41,192 KB
testcase_06 AC 123 ms
41,124 KB
testcase_07 AC 122 ms
40,968 KB
testcase_08 AC 123 ms
41,204 KB
testcase_09 AC 110 ms
39,936 KB
testcase_10 AC 120 ms
40,944 KB
testcase_11 AC 120 ms
41,156 KB
testcase_12 AC 123 ms
41,236 KB
testcase_13 AC 109 ms
41,088 KB
testcase_14 AC 117 ms
41,108 KB
testcase_15 AC 125 ms
41,284 KB
testcase_16 AC 121 ms
41,088 KB
testcase_17 AC 122 ms
41,208 KB
testcase_18 AC 122 ms
41,072 KB
testcase_19 AC 123 ms
41,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class No_104 {
	public static void main(String args[]) {
		Scanner stdIn = new Scanner(System.in);		

		String road = stdIn.next();
		String[] lr = road.split("");

		int N = 1;
		for (int i = 0; i < lr.length; i++) {
			if ( lr[i].equals("L")) {
				N *= 2;	
			} else {
				N = (N * 2) + 1;
			}
		}
		System.out.println(N);
	}
}
0