結果

問題 No.204 ゴールデン・ウィーク(2)
ユーザー tentententen
提出日時 2020-11-17 21:41:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 1,000 ms
コード長 1,391 bytes
コンパイル時間 2,539 ms
コンパイル使用メモリ 83,896 KB
実行使用メモリ 54,488 KB
最終ジャッジ日時 2024-07-23 08:30:18
合計ジャッジ時間 10,691 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
54,152 KB
testcase_01 AC 134 ms
54,312 KB
testcase_02 AC 130 ms
54,052 KB
testcase_03 AC 132 ms
54,332 KB
testcase_04 AC 130 ms
54,172 KB
testcase_05 AC 132 ms
54,080 KB
testcase_06 AC 128 ms
53,972 KB
testcase_07 AC 134 ms
54,212 KB
testcase_08 AC 130 ms
54,096 KB
testcase_09 AC 128 ms
54,076 KB
testcase_10 AC 130 ms
53,928 KB
testcase_11 AC 130 ms
54,212 KB
testcase_12 AC 129 ms
54,212 KB
testcase_13 AC 130 ms
54,324 KB
testcase_14 AC 131 ms
54,264 KB
testcase_15 AC 134 ms
53,992 KB
testcase_16 AC 129 ms
54,112 KB
testcase_17 AC 130 ms
53,980 KB
testcase_18 AC 129 ms
54,176 KB
testcase_19 AC 131 ms
54,232 KB
testcase_20 AC 134 ms
54,208 KB
testcase_21 AC 132 ms
54,272 KB
testcase_22 AC 132 ms
54,180 KB
testcase_23 AC 117 ms
52,844 KB
testcase_24 AC 129 ms
53,960 KB
testcase_25 AC 130 ms
54,272 KB
testcase_26 AC 120 ms
52,964 KB
testcase_27 AC 131 ms
54,136 KB
testcase_28 AC 132 ms
54,252 KB
testcase_29 AC 131 ms
54,220 KB
testcase_30 AC 130 ms
54,376 KB
testcase_31 AC 130 ms
53,976 KB
testcase_32 AC 135 ms
54,008 KB
testcase_33 AC 130 ms
54,264 KB
testcase_34 AC 131 ms
54,144 KB
testcase_35 AC 132 ms
54,448 KB
testcase_36 AC 132 ms
53,972 KB
testcase_37 AC 133 ms
53,872 KB
testcase_38 AC 132 ms
54,372 KB
testcase_39 AC 134 ms
53,956 KB
testcase_40 AC 130 ms
54,212 KB
testcase_41 AC 129 ms
54,300 KB
testcase_42 AC 134 ms
54,272 KB
testcase_43 AC 135 ms
53,984 KB
testcase_44 AC 133 ms
54,036 KB
testcase_45 AC 136 ms
54,488 KB
testcase_46 AC 131 ms
54,036 KB
testcase_47 AC 133 ms
54,216 KB
testcase_48 AC 133 ms
54,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int d = sc.nextInt();
        ArrayList<Integer> cal = new ArrayList<>();
        char prev = 'x';
        int count = 20;
        for (char c : (sc.next() + sc.next()).toCharArray()) {
            if (prev == c) {
                count++;
            } else {
                cal.add(count);
                count = 1;
                prev = c;
            }
        }
        if (prev == 'x') {
            cal.add(count + 20);
        } else {
            cal.add(count);
            cal.add(20);
        }
        if (cal.size() == 1) {
            System.out.println(d);
            return;
        }
        int max = d;
        for (int i = 0; i < cal.size(); i += 2) {
            if (i > 0 && i < cal.size() - 1) {
                if (d >= cal.get(i)) {
                    max = Math.max(max, cal.get(i - 1) + cal.get(i) + cal.get(i + 1));
                } else {
                    max = Math.max(max, cal.get(i - 1) + d);
                    max = Math.max(max, cal.get(i + 1) + d);
                }
            } else if (i == 0) {
                max = Math.max(max, cal.get(1) + d);
            } else {
                max = Math.max(max, cal.get(cal.size() - 2) + d);
            }
        }
        System.out.println(max);
    }
}
0