結果

問題 No.104 国道
ユーザー リチウムリチウム
提出日時 2014-12-16 23:39:32
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 372 bytes
コンパイル時間 3,444 ms
コンパイル使用メモリ 74,424 KB
実行使用メモリ 41,520 KB
最終ジャッジ日時 2024-06-11 22:02:48
合計ジャッジ時間 7,049 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,044 KB
testcase_01 AC 131 ms
40,920 KB
testcase_02 AC 130 ms
40,920 KB
testcase_03 RE -
testcase_04 AC 126 ms
41,168 KB
testcase_05 AC 126 ms
41,044 KB
testcase_06 AC 129 ms
41,236 KB
testcase_07 AC 131 ms
41,520 KB
testcase_08 AC 133 ms
41,068 KB
testcase_09 AC 131 ms
41,480 KB
testcase_10 AC 132 ms
41,048 KB
testcase_11 AC 132 ms
41,436 KB
testcase_12 AC 132 ms
41,304 KB
testcase_13 AC 131 ms
41,160 KB
testcase_14 AC 130 ms
41,056 KB
testcase_15 AC 133 ms
41,128 KB
testcase_16 AC 121 ms
40,424 KB
testcase_17 AC 129 ms
41,036 KB
testcase_18 AC 115 ms
39,988 KB
testcase_19 AC 129 ms
41,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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