結果

問題 No.204 ゴールデン・ウィーク(2)
ユーザー crazybbb3crazybbb3
提出日時 2017-01-16 23:08:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 95 ms / 1,000 ms
コード長 2,375 bytes
コンパイル時間 2,218 ms
コンパイル使用メモリ 85,036 KB
実行使用メモリ 53,168 KB
最終ジャッジ日時 2024-06-06 18:48:28
合計ジャッジ時間 7,411 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
51,476 KB
testcase_01 AC 77 ms
51,552 KB
testcase_02 AC 77 ms
53,120 KB
testcase_03 AC 79 ms
51,316 KB
testcase_04 AC 78 ms
51,320 KB
testcase_05 AC 78 ms
53,004 KB
testcase_06 AC 80 ms
53,060 KB
testcase_07 AC 78 ms
53,016 KB
testcase_08 AC 75 ms
51,556 KB
testcase_09 AC 81 ms
53,128 KB
testcase_10 AC 82 ms
52,984 KB
testcase_11 AC 80 ms
51,428 KB
testcase_12 AC 85 ms
53,168 KB
testcase_13 AC 85 ms
51,460 KB
testcase_14 AC 82 ms
51,356 KB
testcase_15 AC 81 ms
51,212 KB
testcase_16 AC 81 ms
53,128 KB
testcase_17 AC 80 ms
52,892 KB
testcase_18 AC 82 ms
53,032 KB
testcase_19 AC 84 ms
52,748 KB
testcase_20 AC 91 ms
53,108 KB
testcase_21 AC 81 ms
52,772 KB
testcase_22 AC 79 ms
53,136 KB
testcase_23 AC 81 ms
53,060 KB
testcase_24 AC 82 ms
51,528 KB
testcase_25 AC 82 ms
51,312 KB
testcase_26 AC 95 ms
52,232 KB
testcase_27 AC 83 ms
53,048 KB
testcase_28 AC 78 ms
51,320 KB
testcase_29 AC 80 ms
51,432 KB
testcase_30 AC 80 ms
52,864 KB
testcase_31 AC 81 ms
53,004 KB
testcase_32 AC 82 ms
53,148 KB
testcase_33 AC 85 ms
53,116 KB
testcase_34 AC 80 ms
51,448 KB
testcase_35 AC 79 ms
51,260 KB
testcase_36 AC 81 ms
53,156 KB
testcase_37 AC 81 ms
52,988 KB
testcase_38 AC 82 ms
52,980 KB
testcase_39 AC 76 ms
51,456 KB
testcase_40 AC 82 ms
53,036 KB
testcase_41 AC 82 ms
53,012 KB
testcase_42 AC 82 ms
51,220 KB
testcase_43 AC 83 ms
51,120 KB
testcase_44 AC 80 ms
53,096 KB
testcase_45 AC 80 ms
52,988 KB
testcase_46 AC 77 ms
51,148 KB
testcase_47 AC 78 ms
52,720 KB
testcase_48 AC 85 ms
53,008 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 = n;
        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