結果

問題 No.104 国道
ユーザー kano_townkano_town
提出日時 2014-12-20 18:55:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 53 ms / 5,000 ms
コード長 347 bytes
コンパイル時間 3,179 ms
コンパイル使用メモリ 72,812 KB
実行使用メモリ 37,232 KB
最終ジャッジ日時 2024-06-12 02:31:47
合計ジャッジ時間 5,030 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
36,820 KB
testcase_01 AC 51 ms
37,160 KB
testcase_02 AC 51 ms
37,024 KB
testcase_03 AC 52 ms
37,208 KB
testcase_04 AC 52 ms
37,060 KB
testcase_05 AC 51 ms
37,172 KB
testcase_06 AC 52 ms
36,844 KB
testcase_07 AC 52 ms
37,024 KB
testcase_08 AC 52 ms
37,096 KB
testcase_09 AC 53 ms
36,760 KB
testcase_10 AC 53 ms
37,128 KB
testcase_11 AC 51 ms
37,056 KB
testcase_12 AC 51 ms
37,012 KB
testcase_13 AC 52 ms
37,208 KB
testcase_14 AC 51 ms
36,756 KB
testcase_15 AC 51 ms
37,232 KB
testcase_16 AC 53 ms
37,164 KB
testcase_17 AC 51 ms
37,148 KB
testcase_18 AC 52 ms
37,052 KB
testcase_19 AC 53 ms
37,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;

public class Yukicoder104 {
	public static void main(String[] args) throws IOException {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String s = br.readLine();
		int res = 1;
		for (int i = 0; i < s.length(); i++) res = s.charAt(i) == 'L' ? res * 2 : res * 2 + 1;
		System.out.println(res);
	}
}
0