結果

問題 No.104 国道
ユーザー ffmm00ffmm00
提出日時 2015-06-18 05:48:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 5,000 ms
コード長 406 bytes
コンパイル時間 4,036 ms
コンパイル使用メモリ 74,996 KB
実行使用メモリ 54,196 KB
最終ジャッジ日時 2024-07-07 03:37:17
合計ジャッジ時間 7,860 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
53,932 KB
testcase_01 AC 130 ms
54,088 KB
testcase_02 AC 130 ms
53,736 KB
testcase_03 AC 131 ms
53,952 KB
testcase_04 AC 132 ms
54,064 KB
testcase_05 AC 130 ms
54,060 KB
testcase_06 AC 132 ms
53,832 KB
testcase_07 AC 132 ms
54,196 KB
testcase_08 AC 130 ms
53,896 KB
testcase_09 AC 132 ms
53,844 KB
testcase_10 AC 131 ms
53,956 KB
testcase_11 AC 129 ms
54,092 KB
testcase_12 AC 135 ms
54,068 KB
testcase_13 AC 133 ms
53,728 KB
testcase_14 AC 132 ms
54,096 KB
testcase_15 AC 130 ms
53,712 KB
testcase_16 AC 130 ms
53,852 KB
testcase_17 AC 131 ms
53,800 KB
testcase_18 AC 129 ms
54,064 KB
testcase_19 AC 132 ms
53,652 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class N104 {

	public static void main(String[] args) {

		Scanner sca = new Scanner(System.in);

		String S = sca.nextLine();
		int A = 1;

		if (S.equals("")) {
			System.out.println(1);
			return;
		}

		char[] b = S.toCharArray();

		for (int i = 0; i < b.length; i++) {
			if (b[i] == 'L')
				A = A * 2;
			else
				A = A * 2 + 1;
		}

		System.out.println(A);

	}
}
0