結果

問題 No.204 ゴールデン・ウィーク(2)
ユーザー spaciaspacia
提出日時 2016-01-19 00:05:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 92 ms / 1,000 ms
コード長 933 bytes
コンパイル時間 1,966 ms
コンパイル使用メモリ 78,292 KB
実行使用メモリ 39,980 KB
最終ジャッジ日時 2024-06-06 18:43:36
合計ジャッジ時間 7,259 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
39,948 KB
testcase_01 AC 81 ms
37,820 KB
testcase_02 AC 81 ms
38,100 KB
testcase_03 AC 76 ms
38,036 KB
testcase_04 AC 78 ms
39,784 KB
testcase_05 AC 79 ms
37,956 KB
testcase_06 AC 81 ms
39,636 KB
testcase_07 AC 82 ms
38,160 KB
testcase_08 AC 84 ms
39,664 KB
testcase_09 AC 87 ms
39,500 KB
testcase_10 AC 79 ms
38,012 KB
testcase_11 AC 80 ms
39,440 KB
testcase_12 AC 83 ms
39,704 KB
testcase_13 AC 83 ms
39,784 KB
testcase_14 AC 85 ms
39,532 KB
testcase_15 AC 79 ms
37,608 KB
testcase_16 AC 79 ms
39,852 KB
testcase_17 AC 80 ms
39,704 KB
testcase_18 AC 82 ms
39,948 KB
testcase_19 AC 87 ms
39,700 KB
testcase_20 AC 83 ms
39,416 KB
testcase_21 AC 92 ms
39,912 KB
testcase_22 AC 83 ms
37,748 KB
testcase_23 AC 82 ms
38,060 KB
testcase_24 AC 80 ms
37,960 KB
testcase_25 AC 81 ms
39,420 KB
testcase_26 AC 84 ms
38,048 KB
testcase_27 AC 81 ms
39,620 KB
testcase_28 AC 81 ms
39,724 KB
testcase_29 AC 74 ms
38,316 KB
testcase_30 AC 79 ms
39,420 KB
testcase_31 AC 79 ms
38,168 KB
testcase_32 AC 81 ms
38,020 KB
testcase_33 AC 78 ms
38,080 KB
testcase_34 AC 80 ms
37,616 KB
testcase_35 AC 79 ms
38,080 KB
testcase_36 AC 80 ms
39,980 KB
testcase_37 AC 79 ms
39,824 KB
testcase_38 AC 79 ms
38,080 KB
testcase_39 AC 79 ms
39,948 KB
testcase_40 AC 80 ms
37,696 KB
testcase_41 AC 81 ms
39,840 KB
testcase_42 AC 82 ms
39,548 KB
testcase_43 AC 78 ms
39,912 KB
testcase_44 AC 82 ms
39,592 KB
testcase_45 AC 83 ms
37,980 KB
testcase_46 AC 87 ms
39,312 KB
testcase_47 AC 81 ms
37,892 KB
testcase_48 AC 79 ms
39,764 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.math.*;

class Main {
	
	public static void out (Object o) {
		System.out.println(o);
	}
	
	public static int solve (String s , int n) {
		int ret = 0;
		int len = s.length();
		for (int i = 0; i < len; i++) {
			int cnt = 0 , j = i;
			char[] c = s.toCharArray();
			while (j < len && cnt < n && c[j] == 'x') {
				cnt++;
				c[j++] = 'o';
			}
			//out(Arrays.toString(c));
			j = 0;
			cnt = 0;
			while (j < len) {
				while (j < len && c[j] == 'o') {
					cnt++;
					j++;
				}
				j++;
				ret = Math.max(ret , cnt);
				cnt = 0;
			}
		}
		return ret;
	}
	
	public static void main (String[] args) throws IOException {
		BufferedReader br = 
			new BufferedReader(new InputStreamReader(System.in));
		
		int n = Integer.parseInt(br.readLine());
		String w1 = br.readLine();
		String w2 = br.readLine();
		String x = "xxxxxxxxxxxxxx";
		out(solve(x + w1 + w2 + x , n));
	}
	
}
0