結果

問題 No.104 国道
ユーザー spaciaspacia
提出日時 2015-12-29 22:39:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 53 ms / 5,000 ms
コード長 532 bytes
コンパイル時間 2,379 ms
コンパイル使用メモリ 74,568 KB
実行使用メモリ 37,200 KB
最終ジャッジ日時 2024-09-19 08:31:06
合計ジャッジ時間 3,700 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
36,700 KB
testcase_01 AC 51 ms
36,916 KB
testcase_02 AC 50 ms
37,068 KB
testcase_03 AC 51 ms
36,896 KB
testcase_04 AC 53 ms
36,884 KB
testcase_05 AC 51 ms
36,712 KB
testcase_06 AC 51 ms
36,952 KB
testcase_07 AC 50 ms
37,076 KB
testcase_08 AC 51 ms
37,108 KB
testcase_09 AC 50 ms
37,108 KB
testcase_10 AC 51 ms
36,952 KB
testcase_11 AC 50 ms
37,008 KB
testcase_12 AC 50 ms
36,700 KB
testcase_13 AC 51 ms
37,140 KB
testcase_14 AC 51 ms
37,100 KB
testcase_15 AC 50 ms
36,720 KB
testcase_16 AC 51 ms
36,988 KB
testcase_17 AC 50 ms
37,080 KB
testcase_18 AC 51 ms
37,200 KB
testcase_19 AC 50 ms
36,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.math.*;

class Main104 {
	
	public static void out (Object out) {
		System.out.println(out);
	}
	
	public static void main (String[] args) throws IOException {
		BufferedReader br = 
			new BufferedReader(new InputStreamReader(System.in));
		
		int ans = 0;
		String s = br.readLine();
		
		for (int i = 0; i < s.length(); i++) {
			char c = s.charAt(i);
			if (c == 'R') {
				ans += (int)Math.pow(2, s.length() - i - 1);
			}
		}
		
		out(ans + (int)Math.pow(2, s.length()));
	}
}
0