結果

問題 No.104 国道
ユーザー jimanojimano
提出日時 2018-01-18 19:24:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 55 ms / 5,000 ms
コード長 565 bytes
コンパイル時間 3,155 ms
コンパイル使用メモリ 72,840 KB
実行使用メモリ 37,488 KB
最終ジャッジ日時 2024-06-06 18:18:02
合計ジャッジ時間 5,111 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
37,364 KB
testcase_01 AC 53 ms
36,676 KB
testcase_02 AC 54 ms
37,488 KB
testcase_03 AC 54 ms
36,924 KB
testcase_04 AC 53 ms
37,276 KB
testcase_05 AC 52 ms
37,172 KB
testcase_06 AC 53 ms
37,088 KB
testcase_07 AC 55 ms
36,680 KB
testcase_08 AC 54 ms
37,036 KB
testcase_09 AC 53 ms
37,280 KB
testcase_10 AC 54 ms
36,708 KB
testcase_11 AC 53 ms
37,048 KB
testcase_12 AC 53 ms
36,640 KB
testcase_13 AC 54 ms
37,084 KB
testcase_14 AC 52 ms
36,980 KB
testcase_15 AC 53 ms
37,088 KB
testcase_16 AC 53 ms
37,228 KB
testcase_17 AC 53 ms
36,928 KB
testcase_18 AC 54 ms
36,920 KB
testcase_19 AC 54 ms
37,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package me.yukicoder.lv1;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class No0104 {
	public static void main(String[] args) {
		try (BufferedReader br = new BufferedReader(new InputStreamReader(System.in))) {
			String[] array = br.readLine().split("");
			int route = 1;

			for (String s : array) {
				if (s.equals("L")) {
					route *= 2;
				} else if (s.equals("R")) {
					route = (route * 2) + 1;
				}
			}
			System.out.println(route);

		} catch (IOException e) {
			e.printStackTrace();
		}
	}
}
0