結果

問題 No.495 (^^*) Easy
ユーザー TwinkleStar74TwinkleStar74
提出日時 2017-10-08 21:54:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 104 ms / 2,000 ms
コード長 777 bytes
コンパイル時間 2,205 ms
コンパイル使用メモリ 77,836 KB
実行使用メモリ 39,972 KB
最終ジャッジ日時 2024-11-17 05:48:26
合計ジャッジ時間 3,143 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
37,944 KB
testcase_01 AC 79 ms
37,648 KB
testcase_02 AC 66 ms
37,668 KB
testcase_03 AC 83 ms
38,016 KB
testcase_04 AC 70 ms
37,592 KB
testcase_05 AC 73 ms
38,200 KB
testcase_06 AC 104 ms
39,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

class No495{
	public static void main(String[] args) {
		try{
			BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
			int left = 0; int right = 0;
			Hantei(br,left,right);
		}
		catch(IOException e){
			e.getStackTrace();
		}
		catch(NumberFormatException e){
			e.getStackTrace();
		}
	}
	public static void Hantei(BufferedReader br, int left, int right)  throws IOException{
		String str = br.readLine();
		boolean bln = true;
		int i = 0;
		while(bln){
			if(str.charAt(5*i) == '#'){
				bln = false;
			}
			else if(str.charAt(5*i+3) == '*'){
				left++;
				i++;
			}
			else {
				right++;
				i++;
			}
		}
		System.out.println(left +" "+ right);
	}
}
0