結果

問題 No.104 国道
ユーザー kanra661kanra661
提出日時 2014-12-17 00:38:13
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 428 bytes
コンパイル時間 2,283 ms
コンパイル使用メモリ 74,540 KB
実行使用メモリ 55,816 KB
最終ジャッジ日時 2024-06-11 22:15:02
合計ジャッジ時間 5,910 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
54,024 KB
testcase_01 AC 132 ms
53,956 KB
testcase_02 AC 133 ms
54,084 KB
testcase_03 RE -
testcase_04 AC 130 ms
54,120 KB
testcase_05 AC 130 ms
54,012 KB
testcase_06 AC 135 ms
53,996 KB
testcase_07 AC 131 ms
53,900 KB
testcase_08 AC 132 ms
55,816 KB
testcase_09 AC 133 ms
53,988 KB
testcase_10 AC 134 ms
53,928 KB
testcase_11 AC 136 ms
53,956 KB
testcase_12 AC 135 ms
54,124 KB
testcase_13 AC 134 ms
53,752 KB
testcase_14 AC 149 ms
53,980 KB
testcase_15 AC 151 ms
53,928 KB
testcase_16 AC 134 ms
54,128 KB
testcase_17 AC 133 ms
53,960 KB
testcase_18 AC 133 ms
53,792 KB
testcase_19 AC 136 ms
54,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String s = sc.next();
		sc.close();
		char dir[] = s.toCharArray();
		int lNum = 1;
		if(dir.length==0)
		{
			System.out.println(lNum);
			return ;
		}
		for (int i = 0; i < dir.length; i++) {
				lNum *= 2 ;
				if(dir[i] == 'R') lNum++;
		}
		System.out.println(lNum);
	}

}
0