結果

問題 No.104 国道
ユーザー jimanojimano
提出日時 2018-01-18 19:26:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 52 ms / 5,000 ms
コード長 555 bytes
コンパイル時間 3,066 ms
コンパイル使用メモリ 72,728 KB
実行使用メモリ 36,848 KB
最終ジャッジ日時 2024-06-06 18:18:07
合計ジャッジ時間 4,764 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
36,704 KB
testcase_01 AC 49 ms
36,740 KB
testcase_02 AC 48 ms
36,528 KB
testcase_03 AC 48 ms
36,564 KB
testcase_04 AC 48 ms
36,744 KB
testcase_05 AC 48 ms
36,544 KB
testcase_06 AC 49 ms
36,708 KB
testcase_07 AC 48 ms
36,756 KB
testcase_08 AC 51 ms
36,756 KB
testcase_09 AC 49 ms
36,216 KB
testcase_10 AC 51 ms
36,652 KB
testcase_11 AC 48 ms
36,072 KB
testcase_12 AC 48 ms
36,848 KB
testcase_13 AC 50 ms
36,432 KB
testcase_14 AC 52 ms
36,836 KB
testcase_15 AC 50 ms
36,680 KB
testcase_16 AC 48 ms
36,704 KB
testcase_17 AC 50 ms
36,220 KB
testcase_18 AC 48 ms
36,576 KB
testcase_19 AC 49 ms
36,612 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))) {
			char[] array = br.readLine().toCharArray();
			int route = 1;

			for (char c : array) {
				if (c == 'L') {
					route *= 2;
				} else if (c == 'R') {
					route = (route * 2) + 1;
				}
			}
			System.out.println(route);
		} catch (IOException e) {
			e.printStackTrace();
		}
	}
}
0