結果

問題 No.204 ゴールデン・ウィーク(2)
ユーザー bambambambam
提出日時 2019-08-27 11:15:32
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 876 bytes
コンパイル時間 2,479 ms
コンパイル使用メモリ 78,500 KB
実行使用メモリ 54,396 KB
最終ジャッジ日時 2024-11-14 05:45:43
合計ジャッジ時間 9,916 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
54,152 KB
testcase_01 AC 125 ms
54,224 KB
testcase_02 AC 128 ms
54,192 KB
testcase_03 AC 122 ms
54,320 KB
testcase_04 AC 125 ms
53,924 KB
testcase_05 AC 125 ms
54,024 KB
testcase_06 AC 124 ms
53,980 KB
testcase_07 AC 127 ms
54,216 KB
testcase_08 AC 113 ms
52,820 KB
testcase_09 AC 125 ms
54,264 KB
testcase_10 AC 126 ms
53,892 KB
testcase_11 AC 128 ms
54,304 KB
testcase_12 AC 127 ms
54,100 KB
testcase_13 AC 114 ms
52,904 KB
testcase_14 AC 130 ms
54,172 KB
testcase_15 AC 127 ms
54,012 KB
testcase_16 AC 129 ms
54,036 KB
testcase_17 AC 115 ms
53,036 KB
testcase_18 AC 115 ms
53,036 KB
testcase_19 AC 133 ms
54,004 KB
testcase_20 AC 129 ms
54,096 KB
testcase_21 AC 127 ms
54,176 KB
testcase_22 WA -
testcase_23 AC 124 ms
54,008 KB
testcase_24 AC 125 ms
54,156 KB
testcase_25 AC 126 ms
54,060 KB
testcase_26 AC 113 ms
52,892 KB
testcase_27 AC 116 ms
52,732 KB
testcase_28 AC 128 ms
54,048 KB
testcase_29 AC 126 ms
53,984 KB
testcase_30 AC 127 ms
54,056 KB
testcase_31 AC 126 ms
53,944 KB
testcase_32 AC 128 ms
54,160 KB
testcase_33 AC 128 ms
54,248 KB
testcase_34 AC 131 ms
53,972 KB
testcase_35 AC 127 ms
53,980 KB
testcase_36 AC 127 ms
53,876 KB
testcase_37 AC 125 ms
54,104 KB
testcase_38 AC 129 ms
54,000 KB
testcase_39 AC 129 ms
54,156 KB
testcase_40 AC 114 ms
52,888 KB
testcase_41 AC 125 ms
54,224 KB
testcase_42 AC 129 ms
54,276 KB
testcase_43 AC 124 ms
54,160 KB
testcase_44 AC 118 ms
52,828 KB
testcase_45 AC 127 ms
54,396 KB
testcase_46 AC 128 ms
54,136 KB
testcase_47 AC 124 ms
54,044 KB
testcase_48 AC 126 ms
53,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		StringBuilder sb = new StringBuilder();
		int d = sc.nextInt();
		char s1[] = sc.next().toCharArray();
		char s2[] = sc.next().toCharArray();
		char cal[] = new char[42];
		Arrays.fill(cal, 'x');
		for (int i = 14; i < 21; i++) {
			cal[i] = s1[i - 14];
		}
		for (int i = 21; i < 28; i++) {
			cal[i] = s2[i - 21];
		}
		char[] tmp;
		int cnt, max = 0;
		for (int i = 0; i < 42 - d; i++) {
			tmp = Arrays.copyOf(cal, cal.length);
			cnt = 0;
			for (int j = i; j < d + i; j++) {
				if(tmp[j] == 'o') {
					break;
				}
				tmp[j] = 'o';
			}
			for (int j = 0; j < 42; j++) {
				if (tmp[j] == 'o') {
					cnt++;
					max = Math.max(max, cnt);
				} else {
					cnt = 0;
				}
			}
		}
		System.out.println(max);
	}
}
0