結果

問題 No.204 ゴールデン・ウィーク(2)
ユーザー crazybbb3crazybbb3
提出日時 2017-01-16 23:07:07
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 2,375 bytes
コンパイル時間 2,496 ms
コンパイル使用メモリ 84,848 KB
実行使用メモリ 40,340 KB
最終ジャッジ日時 2024-12-22 20:59:35
合計ジャッジ時間 8,780 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
40,228 KB
testcase_01 AC 90 ms
38,604 KB
testcase_02 AC 91 ms
39,856 KB
testcase_03 AC 88 ms
38,504 KB
testcase_04 AC 89 ms
40,024 KB
testcase_05 AC 92 ms
39,872 KB
testcase_06 AC 91 ms
39,440 KB
testcase_07 AC 92 ms
38,324 KB
testcase_08 AC 90 ms
39,912 KB
testcase_09 AC 91 ms
38,572 KB
testcase_10 AC 102 ms
38,784 KB
testcase_11 AC 92 ms
39,860 KB
testcase_12 AC 99 ms
39,880 KB
testcase_13 AC 99 ms
39,400 KB
testcase_14 AC 99 ms
39,944 KB
testcase_15 AC 87 ms
38,404 KB
testcase_16 AC 86 ms
38,644 KB
testcase_17 AC 98 ms
40,320 KB
testcase_18 AC 90 ms
39,888 KB
testcase_19 AC 89 ms
39,864 KB
testcase_20 AC 89 ms
38,612 KB
testcase_21 AC 100 ms
38,180 KB
testcase_22 AC 100 ms
38,632 KB
testcase_23 AC 98 ms
40,168 KB
testcase_24 AC 88 ms
38,632 KB
testcase_25 AC 88 ms
38,520 KB
testcase_26 AC 90 ms
38,624 KB
testcase_27 AC 94 ms
38,388 KB
testcase_28 AC 88 ms
38,844 KB
testcase_29 AC 87 ms
38,528 KB
testcase_30 AC 86 ms
39,964 KB
testcase_31 WA -
testcase_32 AC 91 ms
38,328 KB
testcase_33 AC 98 ms
40,124 KB
testcase_34 AC 102 ms
39,996 KB
testcase_35 AC 101 ms
40,168 KB
testcase_36 AC 98 ms
39,272 KB
testcase_37 AC 97 ms
39,168 KB
testcase_38 AC 92 ms
40,004 KB
testcase_39 AC 102 ms
40,248 KB
testcase_40 AC 88 ms
40,172 KB
testcase_41 AC 92 ms
40,340 KB
testcase_42 AC 91 ms
38,644 KB
testcase_43 AC 88 ms
40,324 KB
testcase_44 AC 100 ms
39,868 KB
testcase_45 AC 100 ms
38,632 KB
testcase_46 AC 87 ms
38,352 KB
testcase_47 AC 90 ms
38,288 KB
testcase_48 AC 92 ms
38,580 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.util.*;

public class Main {

    void solve() throws IOException {
        int n = ni();
        String t = "xxxxxxxxxxxxxx";
        String s = t + ns() + ns() + t;
        ArrayList<Integer> list = new ArrayList<>();
        int cnt = 1;
        for (int i = 0; i < s.length() - 1; i++) {
            if (s.charAt(i) == s.charAt(i + 1)) {
                cnt++;
            } else {
                list.add(cnt);
                cnt = 1;
            }
        }
        list.add(cnt);

        int ans = 0;
        for (int i = 1; i < list.size(); i += 2) {
            if (list.get(i - 1) >= n || list.get(i + 1) >= n) {
                ans = Math.max(ans, list.get(i) + n);
            }
            if (i != 1 && list.get(i - 1) <= n) {
                ans = Math.max(ans, list.get(i - 2) + list.get(i - 1) + list.get(i));
            }
        }

        out.println(ans);
    }

    String ns() throws IOException {
        while (!tok.hasMoreTokens()) {
            tok = new StringTokenizer(in.readLine(), " ");
        }
        return tok.nextToken();
    }

    int ni() throws IOException {
        return Integer.parseInt(ns());
    }

    long nl() throws IOException {
        return Long.parseLong(ns());
    }

    double nd() throws IOException {
        return Double.parseDouble(ns());
    }

    String[] nsa(int n) throws IOException {
        String[] res = new String[n];
        for (int i = 0; i < n; i++) {
            res[i] = ns();
        }
        return res;
    }

    int[] nia(int n) throws IOException {
        int[] res = new int[n];
        for (int i = 0; i < n; i++) {
            res[i] = ni();
        }
        return res;
    }

    long[] nla(int n) throws IOException {
        long[] res = new long[n];
        for (int i = 0; i < n; i++) {
            res[i] = nl();
        }
        return res;
    }

    static BufferedReader in;
    static PrintWriter out;
    static StringTokenizer tok;

    public static void main(String[] args) throws IOException {
        in = new BufferedReader(new InputStreamReader(System.in));
        out = new PrintWriter(System.out);
        tok = new StringTokenizer("");
        Main main = new Main();
        main.solve();
        out.close();
    }
}
0