結果

問題 No.204 ゴールデン・ウィーク(2)
ユーザー GrenacheGrenache
提出日時 2015-05-08 23:33:17
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 824 bytes
コンパイル時間 1,971 ms
コンパイル使用メモリ 79,628 KB
実行使用メモリ 56,796 KB
最終ジャッジ日時 2024-10-13 11:54:19
合計ジャッジ時間 10,339 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 145 ms
54,736 KB
testcase_01 WA -
testcase_02 AC 177 ms
54,856 KB
testcase_03 AC 176 ms
54,704 KB
testcase_04 AC 146 ms
54,620 KB
testcase_05 AC 148 ms
54,900 KB
testcase_06 AC 145 ms
54,652 KB
testcase_07 WA -
testcase_08 AC 151 ms
54,788 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 142 ms
54,988 KB
testcase_12 AC 143 ms
55,012 KB
testcase_13 WA -
testcase_14 AC 148 ms
54,964 KB
testcase_15 WA -
testcase_16 AC 155 ms
54,972 KB
testcase_17 AC 142 ms
54,916 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 158 ms
55,004 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 142 ms
55,116 KB
testcase_24 WA -
testcase_25 AC 144 ms
54,984 KB
testcase_26 AC 147 ms
55,068 KB
testcase_27 AC 148 ms
54,828 KB
testcase_28 WA -
testcase_29 AC 151 ms
54,696 KB
testcase_30 AC 146 ms
54,960 KB
testcase_31 AC 131 ms
54,616 KB
testcase_32 AC 145 ms
54,892 KB
testcase_33 WA -
testcase_34 AC 144 ms
54,916 KB
testcase_35 AC 130 ms
54,716 KB
testcase_36 AC 141 ms
54,892 KB
testcase_37 AC 139 ms
54,748 KB
testcase_38 AC 134 ms
54,660 KB
testcase_39 AC 144 ms
54,624 KB
testcase_40 AC 130 ms
54,672 KB
testcase_41 AC 143 ms
54,996 KB
testcase_42 WA -
testcase_43 AC 141 ms
54,776 KB
testcase_44 AC 143 ms
54,928 KB
testcase_45 AC 149 ms
54,956 KB
testcase_46 AC 133 ms
54,612 KB
testcase_47 WA -
testcase_48 AC 150 ms
54,856 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" + sc.next() + sc.next() + "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