結果

問題 No.104 国道
ユーザー YukimotoPGYukimotoPG
提出日時 2019-02-14 22:05:27
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 353 bytes
コンパイル時間 2,225 ms
コンパイル使用メモリ 74,080 KB
実行使用メモリ 54,244 KB
最終ジャッジ日時 2024-09-13 11:34:06
合計ジャッジ時間 5,586 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
54,104 KB
testcase_01 AC 125 ms
53,772 KB
testcase_02 AC 125 ms
54,104 KB
testcase_03 RE -
testcase_04 AC 126 ms
53,556 KB
testcase_05 AC 125 ms
53,968 KB
testcase_06 AC 124 ms
53,760 KB
testcase_07 AC 126 ms
53,888 KB
testcase_08 AC 126 ms
53,932 KB
testcase_09 AC 127 ms
53,784 KB
testcase_10 AC 129 ms
54,000 KB
testcase_11 AC 128 ms
54,024 KB
testcase_12 AC 132 ms
53,760 KB
testcase_13 AC 127 ms
53,588 KB
testcase_14 AC 127 ms
53,824 KB
testcase_15 AC 127 ms
54,244 KB
testcase_16 AC 130 ms
54,048 KB
testcase_17 AC 129 ms
53,904 KB
testcase_18 AC 125 ms
53,728 KB
testcase_19 AC 127 ms
53,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		
		String s = sc.next();
		if (s.equals("")) {
			System.out.println(1);
			return;
		}
		int n = 1;
		for (int i=0; i<s.length(); i++) {
			if (s.charAt(i) == 'L') n *= 2;
			else n = n*2 + 1;
		}
		System.out.println(n);
		
	}
}
0