結果

問題 No.204 ゴールデン・ウィーク(2)
ユーザー uafr_csuafr_cs
提出日時 2015-06-20 01:33:28
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 1,142 bytes
コンパイル時間 2,497 ms
コンパイル使用メモリ 78,376 KB
実行使用メモリ 41,556 KB
最終ジャッジ日時 2024-10-13 13:25:08
合計ジャッジ時間 9,255 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
41,272 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 121 ms
40,968 KB
testcase_05 AC 120 ms
41,032 KB
testcase_06 AC 118 ms
41,208 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 117 ms
41,384 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 123 ms
41,204 KB
testcase_17 AC 119 ms
41,124 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 129 ms
41,556 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 117 ms
41,328 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 122 ms
41,096 KB
testcase_30 AC 105 ms
41,204 KB
testcase_31 AC 123 ms
41,136 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 118 ms
41,240 KB
testcase_35 AC 118 ms
41,132 KB
testcase_36 AC 107 ms
41,112 KB
testcase_37 AC 109 ms
41,344 KB
testcase_38 AC 120 ms
41,144 KB
testcase_39 WA -
testcase_40 AC 115 ms
41,020 KB
testcase_41 AC 103 ms
41,084 KB
testcase_42 WA -
testcase_43 AC 115 ms
41,292 KB
testcase_44 AC 105 ms
41,208 KB
testcase_45 AC 109 ms
41,272 KB
testcase_46 AC 120 ms
41,216 KB
testcase_47 WA -
testcase_48 AC 115 ms
41,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashSet;
import java.util.LinkedHashMap;
import java.util.LinkedList;
import java.util.Scanner;
import java.util.Set;
import java.util.TreeSet;

public class Main {
	
	public static final int SIZE = 14;
	
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		
		final int D = sc.nextInt();
		
		boolean[] days = new boolean[SIZE];
		for(int i = 0; i < 2; i++){
			char[] inputs = sc.next().toCharArray();
			
			for(int j = 0; j < SIZE / 2; j++){
				days[i * (SIZE / 2) + j] = inputs[j] == 'o';
			}
		}
		
		int max = 0;
		for(int d = 0; d < SIZE - D; d++){
			boolean[] new_days = new boolean[SIZE];
			System.arraycopy(days, 0, new_days, 0, SIZE);
			
			for(int i = 0; i < D; i++){
				new_days[d + i] = true;
			}
			
			int prev = -1;
			for(int cur = 0; cur < SIZE; cur++){
				if(!new_days[cur] && prev >= 0){
					max = Math.max(max, cur - prev);
					prev = -1;
				}else if(new_days[cur] && prev < 0){
					prev = cur;
				}
			}
			
			if(prev >= 0){
				max = Math.max(max, SIZE - prev);
			}
		}
	
		System.out.println(max);
	}
}
0