結果

問題 No.204 ゴールデン・ウィーク(2)
ユーザー GrenacheGrenache
提出日時 2015-05-08 23:34:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 194 ms / 1,000 ms
コード長 848 bytes
コンパイル時間 2,810 ms
コンパイル使用メモリ 79,616 KB
実行使用メモリ 42,572 KB
最終ジャッジ日時 2024-12-24 11:40:12
合計ジャッジ時間 12,883 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 171 ms
42,056 KB
testcase_01 AC 178 ms
42,300 KB
testcase_02 AC 175 ms
42,304 KB
testcase_03 AC 158 ms
41,840 KB
testcase_04 AC 179 ms
42,420 KB
testcase_05 AC 178 ms
42,240 KB
testcase_06 AC 172 ms
42,348 KB
testcase_07 AC 178 ms
42,312 KB
testcase_08 AC 175 ms
42,316 KB
testcase_09 AC 177 ms
42,368 KB
testcase_10 AC 190 ms
42,348 KB
testcase_11 AC 189 ms
42,200 KB
testcase_12 AC 174 ms
42,316 KB
testcase_13 AC 177 ms
42,216 KB
testcase_14 AC 178 ms
42,316 KB
testcase_15 AC 179 ms
42,316 KB
testcase_16 AC 176 ms
42,332 KB
testcase_17 AC 178 ms
42,368 KB
testcase_18 AC 182 ms
42,432 KB
testcase_19 AC 174 ms
42,424 KB
testcase_20 AC 170 ms
42,264 KB
testcase_21 AC 173 ms
42,176 KB
testcase_22 AC 180 ms
42,148 KB
testcase_23 AC 172 ms
42,444 KB
testcase_24 AC 172 ms
42,244 KB
testcase_25 AC 173 ms
42,260 KB
testcase_26 AC 177 ms
42,408 KB
testcase_27 AC 159 ms
42,080 KB
testcase_28 AC 179 ms
42,320 KB
testcase_29 AC 175 ms
42,168 KB
testcase_30 AC 176 ms
42,572 KB
testcase_31 AC 182 ms
42,320 KB
testcase_32 AC 175 ms
42,112 KB
testcase_33 AC 194 ms
42,080 KB
testcase_34 AC 182 ms
42,492 KB
testcase_35 AC 179 ms
42,240 KB
testcase_36 AC 163 ms
41,844 KB
testcase_37 AC 182 ms
42,476 KB
testcase_38 AC 183 ms
42,320 KB
testcase_39 AC 181 ms
42,412 KB
testcase_40 AC 172 ms
42,172 KB
testcase_41 AC 178 ms
42,240 KB
testcase_42 AC 190 ms
42,328 KB
testcase_43 AC 191 ms
42,116 KB
testcase_44 AC 173 ms
42,416 KB
testcase_45 AC 175 ms
42,364 KB
testcase_46 AC 180 ms
42,280 KB
testcase_47 AC 176 ms
42,472 KB
testcase_48 AC 180 ms
42,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder150508;
import java.util.Scanner;


public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);

		int d = sc.nextInt();
		String c = "xxxxxxx" + "xxxxxxx" + sc.next() + sc.next() + "xxxxxxx" + "xxxxxxx";
		StringBuffer[] cc = new StringBuffer[c.length()];

		for (int i = 0; i < c.length(); i++) {
			cc[i] = new StringBuffer(c);
			for (int j = i; j < i + d && j < cc[i].length(); j++) {
				if (cc[i].charAt(j) == 'x') {
					cc[i].setCharAt(j, 'o');
				} else {
					break;
				}
			}
		}
		
		int max = 0;
		for (int j = 0; j < cc.length; j++) {
			int count = 0;
			for (int i = 0; i < cc[j].length(); i++) {
				if (cc[j].charAt(i) == 'o') {
					count++;
					max = Math.max(max, count);
				} else {
					count = 0;
				}
			}
		}

		System.out.println(max);

		sc.close();
	}
}
0