結果

問題 No.104 国道
ユーザー matsuyoshi30matsuyoshi30
提出日時 2016-02-05 19:58:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 119 ms / 5,000 ms
コード長 344 bytes
コンパイル時間 2,181 ms
コンパイル使用メモリ 74,480 KB
実行使用メモリ 41,164 KB
最終ジャッジ日時 2024-09-21 20:38:40
合計ジャッジ時間 4,768 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 94 ms
39,296 KB
testcase_01 AC 98 ms
40,004 KB
testcase_02 AC 102 ms
39,780 KB
testcase_03 AC 118 ms
40,972 KB
testcase_04 AC 113 ms
41,164 KB
testcase_05 AC 114 ms
40,728 KB
testcase_06 AC 106 ms
40,000 KB
testcase_07 AC 119 ms
40,872 KB
testcase_08 AC 115 ms
40,908 KB
testcase_09 AC 117 ms
41,036 KB
testcase_10 AC 104 ms
39,688 KB
testcase_11 AC 119 ms
40,984 KB
testcase_12 AC 101 ms
39,916 KB
testcase_13 AC 111 ms
40,932 KB
testcase_14 AC 102 ms
39,836 KB
testcase_15 AC 117 ms
40,908 KB
testcase_16 AC 113 ms
40,664 KB
testcase_17 AC 110 ms
41,032 KB
testcase_18 AC 100 ms
39,648 KB
testcase_19 AC 100 ms
40,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Test {
	public static void main(String[] args) throws Exception {
		Scanner in = new Scanner(System.in);

		char[] s = in.nextLine().toCharArray();
		int n = 1;
		for(int i=0; i<s.length; i++) {
			if(s[i] == 'L') {
				n += n;
			}
			if(s[i] == 'R') {
			n = n + n + 1;
			}
		}
		System.out.println(n);
	}
}
0