結果

問題 No.204 ゴールデン・ウィーク(2)
ユーザー YamaKasaYamaKasa
提出日時 2018-08-17 23:08:59
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,804 bytes
コンパイル時間 2,704 ms
コンパイル使用メモリ 77,556 KB
実行使用メモリ 55,944 KB
最終ジャッジ日時 2024-10-11 00:13:00
合計ジャッジ時間 10,677 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
41,296 KB
testcase_01 AC 133 ms
41,060 KB
testcase_02 AC 133 ms
41,288 KB
testcase_03 AC 133 ms
40,800 KB
testcase_04 AC 134 ms
40,772 KB
testcase_05 AC 137 ms
40,896 KB
testcase_06 AC 122 ms
39,620 KB
testcase_07 AC 133 ms
41,128 KB
testcase_08 AC 135 ms
41,488 KB
testcase_09 AC 135 ms
40,944 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 133 ms
41,100 KB
testcase_13 AC 133 ms
40,920 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 133 ms
41,360 KB
testcase_19 WA -
testcase_20 AC 133 ms
40,820 KB
testcase_21 AC 132 ms
41,192 KB
testcase_22 AC 132 ms
41,304 KB
testcase_23 WA -
testcase_24 AC 132 ms
41,308 KB
testcase_25 AC 131 ms
40,816 KB
testcase_26 AC 122 ms
39,928 KB
testcase_27 AC 132 ms
40,804 KB
testcase_28 WA -
testcase_29 AC 133 ms
40,840 KB
testcase_30 AC 133 ms
41,152 KB
testcase_31 AC 132 ms
41,288 KB
testcase_32 AC 133 ms
40,840 KB
testcase_33 AC 133 ms
41,228 KB
testcase_34 AC 133 ms
40,840 KB
testcase_35 AC 132 ms
40,920 KB
testcase_36 AC 133 ms
41,144 KB
testcase_37 AC 132 ms
40,948 KB
testcase_38 AC 133 ms
41,128 KB
testcase_39 AC 138 ms
41,328 KB
testcase_40 AC 134 ms
41,440 KB
testcase_41 AC 135 ms
40,688 KB
testcase_42 AC 137 ms
41,504 KB
testcase_43 AC 134 ms
41,416 KB
testcase_44 AC 131 ms
40,948 KB
testcase_45 AC 127 ms
39,936 KB
testcase_46 AC 121 ms
40,912 KB
testcase_47 AC 132 ms
41,324 KB
testcase_48 AC 132 ms
41,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int D = scan.nextInt();
		String C1 = scan.next();
		String C2 = scan.next();
		scan.close();
		char []c = new char[14];
		for(int i = 0; i < 7; i++) {
			c[i] = C1.charAt(i);
		}
		for(int i = 0; i < 7; i++) {
			c[i + 7] = C2.charAt(i);
		}
		int max = 0;
		for(int i = 0; i < 14; i++) {
			char []b = new char[14];
			for(int j = 0; j < 14; j++) {
				b[j] = c[j];
			}
			for(int j = i; j < i + D; j++) {
				if(j > 13) {
					break;
				}
				if(c[j] == 'x') {
					b[j] = 'o';
				}else {
					break;
				}
			}
			max = Math.max(max, solve(b));
		}
		int cnt1 = 0;
		for(int i = 0; i < 14; i++) {
			if(c[i] == 'o') {
				cnt1 ++;
			}else {
				break;
			}
		}
		int cnt2 = 0;
		for(int i = 13; i >= 0; i--) {
			if(c[i] == 'o') {
				cnt2++;
			}else {
				break;
			}
		}
		max = Math.max(max, cnt1 + D);
		max = Math.max(max, cnt2 + D);
		int cnt3 = 0;
		for(int i = 0; i < 14; i++) {
			if(c[i] == 'x') {
				cnt3 ++;
			}else {
				break;
			}
		}
		int cnt4 = 0;
		for(int i = 0; i < 14; i++) {
			if(c[i] == 'x') {
				cnt4 ++;
			}else {
				break;
			}
		}
		if(cnt3 <= D) {
			int cnt5 = 0;
			for(int i = cnt3; i < 14; i++) {
				if(c[i] == 'o') {
					cnt5++;
				}else {
					break;
				}
			}
			max = Math.max(max, D + cnt5);
		}
		if(cnt4 <= D) {
			int cnt6 = 0;
			for(int i = 13 - cnt4; i >= 0; i--) {
				if(c[i] == 'o') {
					cnt6++;
				}else {
					break;
				}
			}
			max = Math.max(max, D + cnt6);
		}
		System.out.println(max);
	}
	static int solve(char []c) {
		int k = 0;
		int max = 0;
		for(int i = 0; i < 14; i++) {
			if(c[i] == 'o') {
				k++;
			}else {
				k = 0;
			}
			if(max < k) {
				max = k;
			}
		}
		return max;
	}
}
0