結果

問題 No.204 ゴールデン・ウィーク(2)
ユーザー t8m8⛄️t8m8⛄️
提出日時 2015-05-22 01:41:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 155 ms / 1,000 ms
コード長 1,612 bytes
コンパイル時間 3,363 ms
コンパイル使用メモリ 80,668 KB
実行使用メモリ 42,500 KB
最終ジャッジ日時 2024-06-06 18:40:14
合計ジャッジ時間 12,138 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
42,004 KB
testcase_01 AC 129 ms
42,016 KB
testcase_02 AC 141 ms
42,116 KB
testcase_03 AC 143 ms
41,980 KB
testcase_04 AC 153 ms
42,180 KB
testcase_05 AC 134 ms
42,204 KB
testcase_06 AC 146 ms
42,172 KB
testcase_07 AC 133 ms
42,132 KB
testcase_08 AC 143 ms
41,964 KB
testcase_09 AC 144 ms
41,976 KB
testcase_10 AC 131 ms
41,772 KB
testcase_11 AC 148 ms
42,036 KB
testcase_12 AC 146 ms
42,188 KB
testcase_13 AC 149 ms
42,180 KB
testcase_14 AC 146 ms
42,100 KB
testcase_15 AC 139 ms
42,156 KB
testcase_16 AC 143 ms
42,292 KB
testcase_17 AC 142 ms
41,872 KB
testcase_18 AC 150 ms
42,128 KB
testcase_19 AC 149 ms
42,232 KB
testcase_20 AC 143 ms
42,356 KB
testcase_21 AC 148 ms
42,260 KB
testcase_22 AC 133 ms
41,968 KB
testcase_23 AC 155 ms
42,224 KB
testcase_24 AC 147 ms
42,328 KB
testcase_25 AC 149 ms
41,920 KB
testcase_26 AC 146 ms
42,108 KB
testcase_27 AC 145 ms
41,704 KB
testcase_28 AC 130 ms
42,084 KB
testcase_29 AC 135 ms
42,064 KB
testcase_30 AC 151 ms
42,280 KB
testcase_31 AC 142 ms
41,804 KB
testcase_32 AC 152 ms
42,092 KB
testcase_33 AC 145 ms
41,724 KB
testcase_34 AC 143 ms
41,948 KB
testcase_35 AC 152 ms
41,976 KB
testcase_36 AC 150 ms
42,276 KB
testcase_37 AC 135 ms
42,212 KB
testcase_38 AC 144 ms
42,116 KB
testcase_39 AC 131 ms
42,500 KB
testcase_40 AC 128 ms
42,172 KB
testcase_41 AC 131 ms
42,000 KB
testcase_42 AC 136 ms
41,576 KB
testcase_43 AC 133 ms
42,212 KB
testcase_44 AC 130 ms
42,100 KB
testcase_45 AC 141 ms
42,124 KB
testcase_46 AC 141 ms
41,948 KB
testcase_47 AC 146 ms
42,188 KB
testcase_48 AC 152 ms
42,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import static java.util.Arrays.*;
import static java.lang.Math.*;

public class No0204 {
    
    static final Scanner in = new Scanner(System.in);
    static final PrintWriter out = new PrintWriter(System.out,false);

    static void solve() {
        int d = in.nextInt();
        String s = in.next();
        String t = in.next();
        String x = "xxxxxxxxxxxxxx";
        s = x + s + t + x;
        char[] cs = s.toCharArray();


        int res = 0;
        for (int i=0; i<cs.length; i++) {
            char[] clone = cs.clone();

            for (int j=i; j-i<d && j<cs.length; j++) {
                if (j < cs.length-1 && clone[j] == 'x' && clone[j+1] == 'o') {
                    clone[j] = 'o';
                    break;
                }
                clone[j] = 'o';
            }

            res = max(res,count(clone));
        }

        out.println(res);
    }

    static int count(char[] cs) {
        int res = 0;
        for (int i=1; i<cs.length; i++) {
            if (cs[i] == 'x') continue;
            int cnt = 1;
            while (i < cs.length && cs[i] == cs[i-1]) {
                cnt++;
                i++;
            }
            res = max(res,cnt);
        }

        return res;
    }

    public static void main(String[] args) {
        long start = System.currentTimeMillis();

        solve();
        out.flush();

        long end = System.currentTimeMillis();
        //trace(end-start + "ms");
        in.close();
        out.close();
    }

    static void trace(Object... o) { System.out.println(deepToString(o));}
}
0