結果

問題 No.203 ゴールデン・ウィーク(1)
ユーザー omc-testomc-test
提出日時 2016-12-14 15:58:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 50 ms / 1,000 ms
コード長 827 bytes
コンパイル時間 2,965 ms
コンパイル使用メモリ 77,720 KB
実行使用メモリ 37,080 KB
最終ジャッジ日時 2024-04-29 08:15:57
合計ジャッジ時間 5,341 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
36,852 KB
testcase_01 AC 46 ms
36,668 KB
testcase_02 AC 49 ms
36,776 KB
testcase_03 AC 48 ms
36,688 KB
testcase_04 AC 47 ms
36,760 KB
testcase_05 AC 48 ms
36,724 KB
testcase_06 AC 47 ms
37,044 KB
testcase_07 AC 49 ms
36,884 KB
testcase_08 AC 47 ms
36,724 KB
testcase_09 AC 48 ms
36,688 KB
testcase_10 AC 49 ms
37,044 KB
testcase_11 AC 48 ms
36,884 KB
testcase_12 AC 46 ms
37,040 KB
testcase_13 AC 47 ms
37,068 KB
testcase_14 AC 48 ms
37,080 KB
testcase_15 AC 49 ms
36,916 KB
testcase_16 AC 50 ms
36,676 KB
testcase_17 AC 48 ms
36,720 KB
testcase_18 AC 47 ms
37,040 KB
testcase_19 AC 48 ms
36,560 KB
testcase_20 AC 44 ms
36,696 KB
testcase_21 AC 45 ms
36,872 KB
testcase_22 AC 49 ms
36,692 KB
testcase_23 AC 49 ms
36,796 KB
testcase_24 AC 45 ms
36,536 KB
testcase_25 AC 47 ms
36,804 KB
testcase_26 AC 47 ms
36,872 KB
testcase_27 AC 46 ms
36,796 KB
testcase_28 AC 46 ms
36,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class No0203 {

	public static void main(String[] args){
		try(BufferedReader br = new BufferedReader(new InputStreamReader(System.in))){
			char c1[] = br.readLine().toCharArray();
			char c2[] = br.readLine().toCharArray();
			int ans = Counter(c1, c2);
			System.out.println(ans);

		}catch(IOException e){
			e.printStackTrace();
		}
	}

	public static int Counter(char c1[], char c2[]){
		int ans = 0;
		int buf = 0;

		for(int i=0; i<c1.length; i++){
			if(c1[i] == 'o'){
				buf++;
			}else{
				ans = Math.max(buf, ans);
				buf = 0;
			}
		}
		for(int i=0; i<c2.length; i++){
			if(c2[i] == 'o'){
				buf++;
			}else{
				ans = Math.max(buf, ans);
				buf = 0;
			}
		}
		ans = Math.max(buf, ans);

		return ans;
	}
}
0