結果

問題 No.104 国道
ユーザー GrenacheGrenache
提出日時 2015-09-23 20:02:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 5,000 ms
コード長 427 bytes
コンパイル時間 3,506 ms
コンパイル使用メモリ 74,324 KB
実行使用メモリ 54,124 KB
最終ジャッジ日時 2024-07-19 08:49:59
合計ジャッジ時間 6,148 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
54,124 KB
testcase_01 AC 111 ms
53,320 KB
testcase_02 AC 110 ms
53,080 KB
testcase_03 AC 107 ms
52,532 KB
testcase_04 AC 118 ms
53,772 KB
testcase_05 AC 116 ms
53,704 KB
testcase_06 AC 108 ms
52,848 KB
testcase_07 AC 117 ms
53,804 KB
testcase_08 AC 115 ms
53,740 KB
testcase_09 AC 107 ms
52,572 KB
testcase_10 AC 121 ms
53,976 KB
testcase_11 AC 116 ms
53,948 KB
testcase_12 AC 120 ms
53,800 KB
testcase_13 AC 105 ms
52,844 KB
testcase_14 AC 110 ms
52,836 KB
testcase_15 AC 123 ms
53,704 KB
testcase_16 AC 115 ms
54,048 KB
testcase_17 AC 119 ms
53,916 KB
testcase_18 AC 119 ms
53,988 KB
testcase_19 AC 127 ms
53,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main_yukicoder104 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        char[] s = sc.nextLine().toCharArray();
        int ret = 1;
        for (int i = 0; i < s.length; i++) {
        	ret <<= 1;
        	if (s[i] == 'R') {
        		ret |= 1;
        	}
        }

        System.out.println(ret);
        
        sc.close();
    }
}
0