結果

問題 No.104 国道
ユーザー FVRChanFVRChan
提出日時 2017-09-24 15:33:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 5,000 ms
コード長 353 bytes
コンパイル時間 2,289 ms
コンパイル使用メモリ 74,304 KB
実行使用メモリ 54,420 KB
最終ジャッジ日時 2024-11-14 07:09:40
合計ジャッジ時間 5,741 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
54,124 KB
testcase_01 AC 124 ms
54,316 KB
testcase_02 AC 128 ms
54,188 KB
testcase_03 AC 126 ms
53,992 KB
testcase_04 AC 126 ms
53,892 KB
testcase_05 AC 127 ms
54,208 KB
testcase_06 AC 126 ms
54,180 KB
testcase_07 AC 125 ms
54,204 KB
testcase_08 AC 127 ms
54,224 KB
testcase_09 AC 127 ms
54,092 KB
testcase_10 AC 126 ms
54,112 KB
testcase_11 AC 127 ms
54,144 KB
testcase_12 AC 124 ms
54,264 KB
testcase_13 AC 127 ms
54,024 KB
testcase_14 AC 124 ms
54,244 KB
testcase_15 AC 125 ms
54,180 KB
testcase_16 AC 113 ms
53,020 KB
testcase_17 AC 127 ms
54,144 KB
testcase_18 AC 128 ms
54,420 KB
testcase_19 AC 129 ms
54,284 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Main{
	public static void main(String args[])throws Exception{
		Scanner sc=new Scanner(System.in);
		int counter=1;
		char c[]=sc.nextLine().toCharArray();
		for(int i=0;i<c.length;i++){
			if(c[i]=='L')
				counter=counter*2;
			else if(c[i]=='R')
				counter=counter*2+1;
		}
		System.out.println(counter);
	}
}
0