結果

問題 No.104 国道
ユーザー ohagi_1182ohagi_1182
提出日時 2017-10-20 17:47:59
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 404 bytes
コンパイル時間 1,922 ms
コンパイル使用メモリ 73,836 KB
実行使用メモリ 54,396 KB
最終ジャッジ日時 2024-11-21 10:47:05
合計ジャッジ時間 5,262 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
54,056 KB
testcase_01 AC 117 ms
54,092 KB
testcase_02 AC 117 ms
54,220 KB
testcase_03 RE -
testcase_04 AC 122 ms
53,832 KB
testcase_05 AC 121 ms
54,324 KB
testcase_06 AC 120 ms
54,100 KB
testcase_07 AC 119 ms
54,048 KB
testcase_08 AC 122 ms
54,244 KB
testcase_09 AC 108 ms
52,708 KB
testcase_10 AC 119 ms
54,204 KB
testcase_11 AC 122 ms
54,056 KB
testcase_12 AC 122 ms
54,060 KB
testcase_13 AC 120 ms
54,116 KB
testcase_14 AC 121 ms
53,976 KB
testcase_15 AC 119 ms
53,868 KB
testcase_16 AC 120 ms
54,396 KB
testcase_17 AC 120 ms
54,172 KB
testcase_18 AC 120 ms
53,956 KB
testcase_19 AC 121 ms
54,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

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

0