結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,028 KB
testcase_01 AC 140 ms
41,372 KB
testcase_02 AC 134 ms
41,316 KB
testcase_03 AC 133 ms
41,272 KB
testcase_04 AC 133 ms
41,328 KB
testcase_05 AC 134 ms
41,236 KB
testcase_06 AC 132 ms
41,076 KB
testcase_07 AC 134 ms
41,260 KB
testcase_08 AC 121 ms
39,844 KB
testcase_09 AC 135 ms
41,056 KB
testcase_10 AC 137 ms
41,164 KB
testcase_11 AC 118 ms
40,060 KB
testcase_12 AC 136 ms
41,248 KB
testcase_13 AC 134 ms
41,028 KB
testcase_14 AC 137 ms
41,216 KB
testcase_15 AC 136 ms
40,936 KB
testcase_16 AC 136 ms
41,028 KB
testcase_17 AC 135 ms
41,264 KB
testcase_18 AC 138 ms
41,488 KB
testcase_19 AC 134 ms
40,752 KB
testcase_20 AC 131 ms
41,004 KB
testcase_21 AC 138 ms
41,140 KB
testcase_22 AC 136 ms
40,948 KB
testcase_23 AC 135 ms
41,208 KB
testcase_24 AC 135 ms
40,884 KB
testcase_25 AC 134 ms
41,048 KB
testcase_26 AC 134 ms
40,904 KB
testcase_27 AC 138 ms
41,460 KB
testcase_28 AC 135 ms
40,788 KB
testcase_29 AC 135 ms
41,212 KB
testcase_30 AC 134 ms
41,336 KB
testcase_31 AC 136 ms
40,924 KB
testcase_32 AC 136 ms
41,192 KB
testcase_33 AC 133 ms
41,128 KB
testcase_34 AC 133 ms
41,324 KB
testcase_35 AC 136 ms
41,040 KB
testcase_36 AC 121 ms
40,108 KB
testcase_37 AC 135 ms
40,976 KB
testcase_38 AC 135 ms
40,824 KB
testcase_39 AC 135 ms
41,280 KB
testcase_40 AC 134 ms
41,356 KB
testcase_41 AC 136 ms
41,076 KB
testcase_42 AC 136 ms
41,056 KB
testcase_43 AC 133 ms
41,300 KB
testcase_44 AC 133 ms
40,756 KB
testcase_45 AC 133 ms
40,952 KB
testcase_46 AC 135 ms
41,048 KB
testcase_47 AC 135 ms
41,212 KB
testcase_48 AC 119 ms
39,844 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 = 13; i >= 0; 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