結果

問題 No.204 ゴールデン・ウィーク(2)
ユーザー t8m8⛄️t8m8⛄️
提出日時 2015-05-22 01:23:29
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,376 bytes
コンパイル時間 3,731 ms
コンパイル使用メモリ 80,240 KB
実行使用メモリ 56,192 KB
最終ジャッジ日時 2024-10-13 13:19:35
合計ジャッジ時間 12,244 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,300 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 134 ms
41,256 KB
testcase_05 AC 134 ms
41,236 KB
testcase_06 AC 135 ms
41,260 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 134 ms
41,268 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 132 ms
41,320 KB
testcase_17 AC 136 ms
41,540 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 135 ms
41,468 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 133 ms
41,140 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 136 ms
40,980 KB
testcase_30 AC 137 ms
41,100 KB
testcase_31 AC 135 ms
41,108 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 136 ms
41,088 KB
testcase_35 AC 136 ms
41,316 KB
testcase_36 AC 133 ms
40,944 KB
testcase_37 AC 139 ms
41,160 KB
testcase_38 AC 281 ms
41,276 KB
testcase_39 WA -
testcase_40 AC 134 ms
41,168 KB
testcase_41 AC 136 ms
41,132 KB
testcase_42 WA -
testcase_43 AC 133 ms
41,268 KB
testcase_44 AC 135 ms
41,416 KB
testcase_45 AC 134 ms
41,148 KB
testcase_46 AC 135 ms
40,960 KB
testcase_47 WA -
testcase_48 AC 136 ms
41,244 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();
        s += t;
        char[] cs = s.toCharArray();


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

            for (int j=i; j-i<d && j<14; j++) {
                clone[j] = 'o';
            }

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

        out.println(res);
    }

    static int count(char[] cs) {
        int res = 0;
        for (int i=1; i<14; i++) {
            if (cs[i] == 'x') continue;
            int cnt = 1;
            while (i < 14 && 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