結果

問題 No.204 ゴールデン・ウィーク(2)
ユーザー htensaihtensai
提出日時 2020-05-08 11:01:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 1,000 ms
コード長 1,010 bytes
コンパイル時間 2,239 ms
コンパイル使用メモリ 77,292 KB
実行使用メモリ 52,164 KB
最終ジャッジ日時 2024-07-03 09:48:35
合計ジャッジ時間 10,232 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
52,164 KB
testcase_01 AC 134 ms
41,736 KB
testcase_02 AC 130 ms
41,144 KB
testcase_03 AC 132 ms
41,508 KB
testcase_04 AC 132 ms
41,384 KB
testcase_05 AC 133 ms
41,484 KB
testcase_06 AC 133 ms
41,264 KB
testcase_07 AC 132 ms
41,196 KB
testcase_08 AC 131 ms
41,232 KB
testcase_09 AC 133 ms
41,224 KB
testcase_10 AC 132 ms
41,324 KB
testcase_11 AC 134 ms
41,616 KB
testcase_12 AC 132 ms
41,572 KB
testcase_13 AC 135 ms
41,360 KB
testcase_14 AC 136 ms
41,692 KB
testcase_15 AC 134 ms
41,536 KB
testcase_16 AC 117 ms
39,892 KB
testcase_17 AC 132 ms
41,312 KB
testcase_18 AC 132 ms
41,624 KB
testcase_19 AC 131 ms
41,160 KB
testcase_20 AC 134 ms
41,600 KB
testcase_21 AC 132 ms
41,600 KB
testcase_22 AC 132 ms
41,248 KB
testcase_23 AC 132 ms
41,552 KB
testcase_24 AC 133 ms
41,516 KB
testcase_25 AC 131 ms
41,704 KB
testcase_26 AC 131 ms
41,332 KB
testcase_27 AC 133 ms
41,052 KB
testcase_28 AC 130 ms
41,412 KB
testcase_29 AC 132 ms
41,352 KB
testcase_30 AC 134 ms
41,268 KB
testcase_31 AC 119 ms
39,916 KB
testcase_32 AC 132 ms
41,436 KB
testcase_33 AC 133 ms
41,548 KB
testcase_34 AC 131 ms
41,396 KB
testcase_35 AC 131 ms
41,308 KB
testcase_36 AC 132 ms
41,388 KB
testcase_37 AC 131 ms
41,356 KB
testcase_38 AC 119 ms
40,296 KB
testcase_39 AC 131 ms
41,736 KB
testcase_40 AC 132 ms
41,164 KB
testcase_41 AC 131 ms
41,268 KB
testcase_42 AC 130 ms
41,268 KB
testcase_43 AC 133 ms
41,404 KB
testcase_44 AC 119 ms
40,380 KB
testcase_45 AC 130 ms
41,348 KB
testcase_46 AC 132 ms
41,440 KB
testcase_47 AC 133 ms
41,268 KB
testcase_48 AC 131 ms
41,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int d = sc.nextInt();
		boolean[] days = new boolean[14 * 3];
		char[] first = sc.next().toCharArray();
		for (int i = 0; i < 7; i++) {
		    days[i + 14] = (first[i] == 'o');
		}
		char[] second = sc.next().toCharArray();
		for (int i = 0; i < 7; i++) {
		    days[i + 21] = (second[i] == 'o');
		}
		int max = getLength(days);
		for (int i = 0; i < days.length; i++) {
		    boolean[] tmp = (boolean[])(days.clone());
		    for (int j = 0; j < d && i + j < days.length && !tmp[i + j]; j++) {
		        tmp[i + j] = true;
		    }
		    max = Math.max(max, getLength(tmp));
		}
		System.out.println(max);
	}
	
	static int getLength(boolean[] days) {
	    int max = 0;
	    int length = 0;
	    for (boolean b : days) {
	        if (b) {
	            length++;
	            max = Math.max(max, length);
	        } else {
	            length = 0;
	        }
	    }
	    return max;
	}
}
0