結果

問題 No.104 国道
ユーザー eagleeagle
提出日時 2022-06-15 14:18:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 117 ms / 5,000 ms
コード長 427 bytes
コンパイル時間 2,262 ms
コンパイル使用メモリ 74,092 KB
実行使用メモリ 41,192 KB
最終ジャッジ日時 2024-10-04 03:17:26
合計ジャッジ時間 4,629 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
40,896 KB
testcase_01 AC 107 ms
41,192 KB
testcase_02 AC 99 ms
40,016 KB
testcase_03 AC 108 ms
41,060 KB
testcase_04 AC 98 ms
40,136 KB
testcase_05 AC 99 ms
39,820 KB
testcase_06 AC 97 ms
40,312 KB
testcase_07 AC 108 ms
41,180 KB
testcase_08 AC 97 ms
40,048 KB
testcase_09 AC 108 ms
40,984 KB
testcase_10 AC 104 ms
41,032 KB
testcase_11 AC 96 ms
40,024 KB
testcase_12 AC 115 ms
41,032 KB
testcase_13 AC 117 ms
41,044 KB
testcase_14 AC 96 ms
39,820 KB
testcase_15 AC 97 ms
40,016 KB
testcase_16 AC 110 ms
40,760 KB
testcase_17 AC 110 ms
41,032 KB
testcase_18 AC 93 ms
39,588 KB
testcase_19 AC 97 ms
40,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
		Scanner sc = new Scanner(System.in);
		//分岐の方向
		String S = sc.nextLine();
		long rute = 1;
		for(int i = 0; i < S.length(); i++) {
			char c = S.charAt(i);
			if(c == 'L') {
				rute = rute * 2;
			} else {
				rute = rute * 2 + 1;
			}
		}
		System.out.println(rute);
	}
}
0