結果

問題 No.204 ゴールデン・ウィーク(2)
ユーザー kenkooookenkoooo
提出日時 2015-05-09 00:34:49
言語 Java21
(openjdk 21)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 1,108 bytes
コンパイル時間 5,189 ms
コンパイル使用メモリ 78,672 KB
実行使用メモリ 55,168 KB
最終ジャッジ日時 2024-10-15 17:25:58
合計ジャッジ時間 14,698 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 164 ms
54,884 KB
testcase_01 AC 165 ms
54,772 KB
testcase_02 AC 165 ms
54,716 KB
testcase_03 AC 164 ms
54,660 KB
testcase_04 AC 153 ms
54,644 KB
testcase_05 AC 164 ms
54,616 KB
testcase_06 AC 166 ms
54,888 KB
testcase_07 AC 165 ms
55,040 KB
testcase_08 AC 164 ms
54,924 KB
testcase_09 AC 166 ms
54,780 KB
testcase_10 AC 165 ms
54,748 KB
testcase_11 AC 162 ms
54,624 KB
testcase_12 AC 164 ms
54,696 KB
testcase_13 AC 164 ms
54,792 KB
testcase_14 AC 162 ms
54,768 KB
testcase_15 AC 160 ms
54,572 KB
testcase_16 AC 165 ms
54,608 KB
testcase_17 AC 165 ms
54,720 KB
testcase_18 AC 163 ms
55,028 KB
testcase_19 AC 163 ms
54,684 KB
testcase_20 AC 165 ms
54,548 KB
testcase_21 AC 161 ms
54,920 KB
testcase_22 WA -
testcase_23 AC 162 ms
54,696 KB
testcase_24 AC 164 ms
54,848 KB
testcase_25 AC 165 ms
55,024 KB
testcase_26 AC 163 ms
54,612 KB
testcase_27 AC 164 ms
54,800 KB
testcase_28 AC 167 ms
54,840 KB
testcase_29 AC 166 ms
54,908 KB
testcase_30 AC 165 ms
54,720 KB
testcase_31 AC 165 ms
54,848 KB
testcase_32 AC 166 ms
54,736 KB
testcase_33 AC 167 ms
54,684 KB
testcase_34 AC 167 ms
54,884 KB
testcase_35 AC 165 ms
54,716 KB
testcase_36 AC 164 ms
54,888 KB
testcase_37 AC 165 ms
54,860 KB
testcase_38 AC 164 ms
54,828 KB
testcase_39 AC 162 ms
54,920 KB
testcase_40 AC 162 ms
54,536 KB
testcase_41 AC 161 ms
54,740 KB
testcase_42 AC 168 ms
54,908 KB
testcase_43 AC 164 ms
54,992 KB
testcase_44 AC 162 ms
54,864 KB
testcase_45 AC 162 ms
54,688 KB
testcase_46 AC 162 ms
54,608 KB
testcase_47 AC 161 ms
54,992 KB
testcase_48 AC 166 ms
55,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class CopyOfMain {

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

		int D = sc.nextInt();
		char[] string = ("xxxxxxxxxxxxxx" + sc.next() + sc.next() + "xxxxxxxxxxxxxx").toCharArray();
		sc.close();

		int max = 0;
		for (int day = 0; day <= D; day++) {
			slide: for (int i = 0; i + day < 42; i++) {
				char[] holidays = new char[42];
				for (int j = 0; j < 42; j++) {
					if (j < i) {
						if (string[j] == 'o') {
							holidays[j] = 'o';
						} else {
							holidays[j] = 'x';
						}
					} else if (j < i + day) {
						if (string[j] == 'o') {
							continue slide;
						} else {
							holidays[j] = 'o';
						}
					} else {
						if (string[j] == 'o') {
							holidays[j] = 'o';
						} else {
							holidays[j] = 'x';
						}
					}

				}

				int cnt = 0;
				for (int j = 0; j < holidays.length; j++) {
					if (holidays[j] == 'o') {
						cnt++;
					}
					if (holidays[j] == 'x' || j == holidays.length - 1) {
						max = Math.max(max, cnt);
						cnt = 0;
					}
				}
			}
		}

		System.out.println(max);
	}
}
0