結果

問題 No.203 ゴールデン・ウィーク(1)
ユーザー omc-testomc-test
提出日時 2016-08-22 08:38:52
言語 Java21
(openjdk 21)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 778 bytes
コンパイル時間 3,824 ms
コンパイル使用メモリ 73,476 KB
実行使用メモリ 37,096 KB
最終ジャッジ日時 2024-04-29 00:04:46
合計ジャッジ時間 6,543 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
36,816 KB
testcase_01 AC 53 ms
36,596 KB
testcase_02 AC 52 ms
36,968 KB
testcase_03 AC 52 ms
36,828 KB
testcase_04 AC 52 ms
36,748 KB
testcase_05 AC 52 ms
36,760 KB
testcase_06 AC 51 ms
36,516 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 52 ms
36,896 KB
testcase_10 AC 52 ms
36,680 KB
testcase_11 AC 51 ms
36,960 KB
testcase_12 AC 53 ms
36,640 KB
testcase_13 AC 53 ms
36,936 KB
testcase_14 AC 52 ms
36,488 KB
testcase_15 AC 53 ms
37,072 KB
testcase_16 AC 52 ms
36,492 KB
testcase_17 AC 51 ms
36,564 KB
testcase_18 AC 52 ms
36,760 KB
testcase_19 AC 51 ms
37,096 KB
testcase_20 AC 51 ms
36,620 KB
testcase_21 AC 52 ms
36,804 KB
testcase_22 AC 52 ms
37,076 KB
testcase_23 AC 53 ms
37,056 KB
testcase_24 AC 52 ms
36,940 KB
testcase_25 AC 52 ms
36,508 KB
testcase_26 AC 53 ms
37,044 KB
testcase_27 AC 52 ms
36,736 KB
testcase_28 AC 52 ms
36,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class No0203 {
	public static boolean flg = false;

	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 cnt = 0;
			int ans = Counter(c2, Counter(c1, cnt));
			System.out.println(ans);

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

	public static int Counter(char c[], int cnt){
		int ans = 0;
		if(flg){
			ans = cnt;
		}
		for(int i=0; i<c.length; i++){
			if(c[i] == 'o'){
				ans++;
				cnt = Math.max(cnt, ans);
				flg = true;
			}else{
				flg = false;
				ans = 0;
			}

		}
		return cnt;
	}
}
0