結果

問題 No.104 国道
ユーザー ohagi_1182ohagi_1182
提出日時 2017-10-20 17:52:19
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 409 bytes
コンパイル時間 2,459 ms
コンパイル使用メモリ 74,156 KB
実行使用メモリ 41,252 KB
最終ジャッジ日時 2024-11-21 10:48:40
合計ジャッジ時間 5,067 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
41,116 KB
testcase_01 AC 120 ms
41,064 KB
testcase_02 AC 119 ms
41,124 KB
testcase_03 RE -
testcase_04 AC 119 ms
41,108 KB
testcase_05 AC 117 ms
41,176 KB
testcase_06 AC 120 ms
41,088 KB
testcase_07 AC 120 ms
41,180 KB
testcase_08 AC 118 ms
41,176 KB
testcase_09 AC 118 ms
41,076 KB
testcase_10 AC 119 ms
41,116 KB
testcase_11 AC 122 ms
41,252 KB
testcase_12 AC 120 ms
41,028 KB
testcase_13 AC 118 ms
40,916 KB
testcase_14 AC 120 ms
40,948 KB
testcase_15 AC 120 ms
41,172 KB
testcase_16 AC 119 ms
41,168 KB
testcase_17 AC 118 ms
41,068 KB
testcase_18 AC 123 ms
41,136 KB
testcase_19 AC 119 ms
41,176 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();
		if(s.isEmpty()) {
			System.out.println(1);
			return;
		}
		int n = s.length();
		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