結果

問題 No.495 (^^*) Easy
ユーザー kazapyon27kazapyon27
提出日時 2017-07-03 02:44:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 149 ms / 2,000 ms
コード長 608 bytes
コンパイル時間 2,941 ms
コンパイル使用メモリ 81,056 KB
実行使用メモリ 42,396 KB
最終ジャッジ日時 2024-10-05 09:06:40
合計ジャッジ時間 4,055 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
38,368 KB
testcase_01 AC 72 ms
38,388 KB
testcase_02 AC 71 ms
38,116 KB
testcase_03 AC 71 ms
38,072 KB
testcase_04 AC 75 ms
38,884 KB
testcase_05 AC 95 ms
39,996 KB
testcase_06 AC 149 ms
42,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/*No.495 (^^*) Easy*/
import java.io.*;
public class No495 {
	public static void main(String[] args) {
		try(BufferedReader input =new BufferedReader(new InputStreamReader(System.in))){
			int i=0,LeftFace=0,RightFace=0;
			String FaceLanguage=input.readLine().replaceAll("\\(\\^\\^\\*\\)", "L").replaceAll("\\(\\*\\^\\^\\)", "R");
			while(FaceLanguage.charAt(i)!='#'){
				if(FaceLanguage.charAt(i)=='L'){
					LeftFace++;
				}else if(FaceLanguage.charAt(i)=='R'){
					RightFace++;
				}
				i++;
			}
			System.out.println(LeftFace+" "+RightFace);
		}catch(Exception e){
			e.printStackTrace();
		}
	}
}
0