結果

問題 No.104 国道
ユーザー koukonkokoukonko
提出日時 2015-12-11 17:56:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 52 ms / 5,000 ms
コード長 622 bytes
コンパイル時間 2,086 ms
コンパイル使用メモリ 73,392 KB
実行使用メモリ 36,952 KB
最終ジャッジ日時 2024-09-15 08:00:05
合計ジャッジ時間 3,955 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
36,760 KB
testcase_01 AC 51 ms
36,420 KB
testcase_02 AC 50 ms
36,748 KB
testcase_03 AC 47 ms
36,632 KB
testcase_04 AC 46 ms
36,632 KB
testcase_05 AC 47 ms
36,952 KB
testcase_06 AC 47 ms
36,740 KB
testcase_07 AC 50 ms
36,760 KB
testcase_08 AC 49 ms
36,404 KB
testcase_09 AC 48 ms
36,516 KB
testcase_10 AC 49 ms
36,952 KB
testcase_11 AC 48 ms
36,724 KB
testcase_12 AC 47 ms
36,664 KB
testcase_13 AC 48 ms
36,816 KB
testcase_14 AC 51 ms
36,948 KB
testcase_15 AC 52 ms
36,608 KB
testcase_16 AC 50 ms
36,952 KB
testcase_17 AC 52 ms
36,932 KB
testcase_18 AC 51 ms
36,864 KB
testcase_19 AC 51 ms
36,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class Main {
	public static void main(String[] args) {
		BufferedReader buff = new BufferedReader(new InputStreamReader(System.in));

		try {
			String str = buff.readLine();

			int line = 1;

			for(int i = 0; i < str.length(); ++i){
				line *= 2;
				char ch = str.charAt(i);
				if(ch == 'R'){
					line++;
				}
			}

			System.out.println(line);

		} catch (NumberFormatException e) {
			e.getStackTrace();
		} catch (IOException e) {
			e.getStackTrace();
		} catch (Exception e) {
			e.getStackTrace();
		}
	}
}
0