結果

問題 No.104 国道
ユーザー YamaKasaYamaKasa
提出日時 2018-04-24 04:05:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 5,000 ms
コード長 593 bytes
コンパイル時間 2,092 ms
コンパイル使用メモリ 74,784 KB
実行使用メモリ 41,452 KB
最終ジャッジ日時 2024-06-27 15:48:49
合計ジャッジ時間 5,377 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,212 KB
testcase_01 AC 110 ms
40,148 KB
testcase_02 AC 124 ms
41,076 KB
testcase_03 AC 131 ms
41,304 KB
testcase_04 AC 126 ms
41,168 KB
testcase_05 AC 110 ms
39,860 KB
testcase_06 AC 125 ms
41,188 KB
testcase_07 AC 122 ms
41,080 KB
testcase_08 AC 123 ms
41,108 KB
testcase_09 AC 109 ms
39,936 KB
testcase_10 AC 122 ms
41,260 KB
testcase_11 AC 124 ms
41,044 KB
testcase_12 AC 107 ms
40,072 KB
testcase_13 AC 125 ms
41,140 KB
testcase_14 AC 123 ms
41,288 KB
testcase_15 AC 118 ms
40,768 KB
testcase_16 AC 123 ms
41,452 KB
testcase_17 AC 123 ms
41,120 KB
testcase_18 AC 126 ms
41,140 KB
testcase_19 AC 117 ms
40,604 KB
権限があれば一括ダウンロードができます

ソースコード

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 = 2 * k + 1;
				}
			}else {
				if(k == 0) {
					k = 0;
				}else {
					k = 2 * k;
				}
			}
		}
		int ans = k + h;
		System.out.println(ans);
	}
}
0