結果

問題 No.204 ゴールデン・ウィーク(2)
ユーザー nCk_cvnCk_cv
提出日時 2015-08-02 17:17:41
言語 Java21
(openjdk 21)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 849 bytes
コンパイル時間 2,261 ms
コンパイル使用メモリ 78,028 KB
実行使用メモリ 54,412 KB
最終ジャッジ日時 2024-10-15 17:26:14
合計ジャッジ時間 10,349 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
39,760 KB
testcase_01 AC 114 ms
40,788 KB
testcase_02 AC 106 ms
40,032 KB
testcase_03 AC 121 ms
41,220 KB
testcase_04 AC 117 ms
41,148 KB
testcase_05 AC 123 ms
40,996 KB
testcase_06 AC 96 ms
39,540 KB
testcase_07 AC 111 ms
41,240 KB
testcase_08 AC 103 ms
39,892 KB
testcase_09 AC 102 ms
39,852 KB
testcase_10 AC 119 ms
41,048 KB
testcase_11 AC 115 ms
40,872 KB
testcase_12 AC 115 ms
41,264 KB
testcase_13 AC 114 ms
41,032 KB
testcase_14 AC 103 ms
40,168 KB
testcase_15 AC 114 ms
41,044 KB
testcase_16 AC 99 ms
39,872 KB
testcase_17 AC 102 ms
40,176 KB
testcase_18 AC 101 ms
40,060 KB
testcase_19 AC 110 ms
41,044 KB
testcase_20 AC 113 ms
41,276 KB
testcase_21 AC 101 ms
40,104 KB
testcase_22 WA -
testcase_23 AC 108 ms
40,804 KB
testcase_24 AC 110 ms
40,992 KB
testcase_25 AC 113 ms
41,268 KB
testcase_26 AC 115 ms
41,276 KB
testcase_27 AC 113 ms
41,252 KB
testcase_28 AC 114 ms
41,080 KB
testcase_29 AC 102 ms
39,744 KB
testcase_30 AC 112 ms
40,760 KB
testcase_31 AC 113 ms
41,384 KB
testcase_32 AC 120 ms
41,088 KB
testcase_33 AC 109 ms
40,124 KB
testcase_34 AC 118 ms
41,072 KB
testcase_35 AC 115 ms
40,996 KB
testcase_36 AC 115 ms
41,008 KB
testcase_37 AC 107 ms
40,120 KB
testcase_38 AC 112 ms
41,056 KB
testcase_39 AC 116 ms
41,216 KB
testcase_40 AC 109 ms
40,968 KB
testcase_41 AC 117 ms
41,300 KB
testcase_42 AC 115 ms
41,240 KB
testcase_43 AC 122 ms
41,304 KB
testcase_44 AC 119 ms
40,788 KB
testcase_45 AC 112 ms
41,144 KB
testcase_46 AC 102 ms
39,992 KB
testcase_47 AC 106 ms
39,764 KB
testcase_48 AC 104 ms
40,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int d = sc.nextInt();
		boolean[] day = new boolean[42];
		char[] in = sc.next().toCharArray();
		for(int i = 0; i < 7; i++) {
			day[14 + i] = (in[i] == 'o')?true:false;
		}
		in = sc.next().toCharArray();
		for(int i = 0; i < 7; i++) {
			day[21 + i] = (in[i] == 'o')?true:false;
		}
		int max = 0;
		for(int i = 0; i < 42; i++) {
			boolean[] cp = Arrays.copyOf(day, day.length);
			for(int j = 0; j < d; j++) {
				if(i + j >= cp.length) break;
				if(cp[i + j]) break;
				cp[i + j] = true;
			}
			
			for(int j = 0; j < 42; j++) {
				if(!cp[j]) continue;
				for(int k = j; k < 42; k++) {
					if(!cp[k]) {
						max = Math.max(max, k - j);
						break;
					}
				}
			}
			
			
			
		}
		System.out.println(max);
		
		
	}
}
0