結果

問題 No.104 国道
ユーザー spacenautspacenaut
提出日時 2016-05-22 16:37:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 5,000 ms
コード長 335 bytes
コンパイル時間 2,126 ms
コンパイル使用メモリ 74,168 KB
実行使用メモリ 54,408 KB
最終ジャッジ日時 2024-10-06 20:33:37
合計ジャッジ時間 5,616 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
54,408 KB
testcase_01 AC 127 ms
54,012 KB
testcase_02 AC 126 ms
54,236 KB
testcase_03 AC 127 ms
53,908 KB
testcase_04 AC 128 ms
54,172 KB
testcase_05 AC 128 ms
54,064 KB
testcase_06 AC 130 ms
54,024 KB
testcase_07 AC 129 ms
54,208 KB
testcase_08 AC 127 ms
54,084 KB
testcase_09 AC 124 ms
54,012 KB
testcase_10 AC 113 ms
53,216 KB
testcase_11 AC 127 ms
53,800 KB
testcase_12 AC 127 ms
54,204 KB
testcase_13 AC 126 ms
54,196 KB
testcase_14 AC 129 ms
54,108 KB
testcase_15 AC 126 ms
54,100 KB
testcase_16 AC 126 ms
53,856 KB
testcase_17 AC 126 ms
54,092 KB
testcase_18 AC 129 ms
54,056 KB
testcase_19 AC 127 ms
53,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class No0104{
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		String s = sc.nextLine();
		int now = 1;

		for(int i = 0; i < s.length(); i++){
			if(s.charAt(i) == 'L'){
				now *= 2;
			}else if(s.charAt(i) == 'R'){
				now = now * 2 + 1;
			}
		}
		System.out.println(now);
	}
}
0