結果

問題 No.104 国道
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-09 20:20:51
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 368 bytes
コンパイル時間 5,044 ms
コンパイル使用メモリ 77,880 KB
実行使用メモリ 41,236 KB
最終ジャッジ日時 2024-10-08 05:57:40
合計ジャッジ時間 4,978 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 93 ms
40,128 KB
testcase_01 AC 113 ms
41,088 KB
testcase_02 AC 106 ms
41,020 KB
testcase_03 RE -
testcase_04 AC 110 ms
40,904 KB
testcase_05 AC 107 ms
41,236 KB
testcase_06 AC 110 ms
41,032 KB
testcase_07 AC 101 ms
40,040 KB
testcase_08 AC 98 ms
39,896 KB
testcase_09 AC 111 ms
40,936 KB
testcase_10 AC 103 ms
40,888 KB
testcase_11 AC 103 ms
40,824 KB
testcase_12 AC 106 ms
40,876 KB
testcase_13 AC 109 ms
41,076 KB
testcase_14 AC 112 ms
41,092 KB
testcase_15 AC 112 ms
41,136 KB
testcase_16 AC 97 ms
39,980 KB
testcase_17 AC 109 ms
41,004 KB
testcase_18 AC 96 ms
40,268 KB
testcase_19 AC 109 ms
41,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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