結果

問題 No.104 国道
ユーザー YamaKasaYamaKasa
提出日時 2018-04-24 03:56:06
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 622 bytes
コンパイル時間 1,967 ms
コンパイル使用メモリ 74,296 KB
実行使用メモリ 56,336 KB
最終ジャッジ日時 2024-06-27 15:48:43
合計ジャッジ時間 5,285 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
41,224 KB
testcase_01 AC 119 ms
41,208 KB
testcase_02 WA -
testcase_03 AC 112 ms
40,340 KB
testcase_04 AC 123 ms
41,116 KB
testcase_05 AC 121 ms
41,064 KB
testcase_06 AC 118 ms
40,788 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 120 ms
41,312 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 122 ms
41,108 KB
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		String s = scan.nextLine();
		scan.close();
		if(s.length() == 0) {
			System.out.println("1");
			System.exit(0);
		}

		int l = s.length();
		int h = (int)Math.pow(2, l);
		int k = 0;

		for(int i = 0; i < l; i++) {
			if(s.substring(i, i + 1).equals("R")) {
				if(k == 0) {
					k = 1;
				}else {
					k = (int)Math.pow(2, k) + 1;
				}
			}else {
				if(k == 0) {
					k = 0;
				}else {
					k = (int)Math.pow(2, k);
				}
			}
		}
		int ans = k + h;
		System.out.println(ans);

	}
}
0