結果

問題 No.204 ゴールデン・ウィーク(2)
ユーザー bambambambam
提出日時 2019-08-27 11:20:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 140 ms / 1,000 ms
コード長 877 bytes
コンパイル時間 2,178 ms
コンパイル使用メモリ 77,388 KB
実行使用メモリ 54,488 KB
最終ジャッジ日時 2024-11-14 05:53:16
合計ジャッジ時間 10,230 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
54,204 KB
testcase_01 AC 140 ms
54,024 KB
testcase_02 AC 132 ms
54,252 KB
testcase_03 AC 132 ms
54,064 KB
testcase_04 AC 133 ms
54,216 KB
testcase_05 AC 133 ms
54,140 KB
testcase_06 AC 134 ms
54,132 KB
testcase_07 AC 134 ms
54,008 KB
testcase_08 AC 133 ms
54,116 KB
testcase_09 AC 135 ms
54,124 KB
testcase_10 AC 133 ms
54,160 KB
testcase_11 AC 132 ms
54,120 KB
testcase_12 AC 134 ms
54,112 KB
testcase_13 AC 133 ms
54,048 KB
testcase_14 AC 132 ms
54,056 KB
testcase_15 AC 132 ms
53,952 KB
testcase_16 AC 133 ms
53,996 KB
testcase_17 AC 133 ms
54,148 KB
testcase_18 AC 134 ms
54,200 KB
testcase_19 AC 133 ms
54,388 KB
testcase_20 AC 140 ms
53,860 KB
testcase_21 AC 137 ms
53,772 KB
testcase_22 AC 134 ms
54,108 KB
testcase_23 AC 134 ms
54,084 KB
testcase_24 AC 134 ms
54,420 KB
testcase_25 AC 135 ms
54,128 KB
testcase_26 AC 135 ms
54,488 KB
testcase_27 AC 129 ms
54,100 KB
testcase_28 AC 133 ms
54,224 KB
testcase_29 AC 132 ms
54,160 KB
testcase_30 AC 132 ms
54,132 KB
testcase_31 AC 134 ms
54,032 KB
testcase_32 AC 135 ms
54,144 KB
testcase_33 AC 135 ms
54,324 KB
testcase_34 AC 134 ms
54,232 KB
testcase_35 AC 134 ms
54,176 KB
testcase_36 AC 133 ms
53,880 KB
testcase_37 AC 132 ms
54,124 KB
testcase_38 AC 133 ms
54,204 KB
testcase_39 AC 137 ms
54,204 KB
testcase_40 AC 135 ms
54,248 KB
testcase_41 AC 135 ms
53,996 KB
testcase_42 AC 135 ms
54,004 KB
testcase_43 AC 132 ms
54,416 KB
testcase_44 AC 135 ms
54,080 KB
testcase_45 AC 138 ms
54,172 KB
testcase_46 AC 134 ms
54,044 KB
testcase_47 AC 136 ms
53,756 KB
testcase_48 AC 134 ms
54,040 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