結果

問題 No.672 最長AB列
ユーザー kokatsukokatsu
提出日時 2022-12-28 21:09:24
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 41 ms / 2,000 ms
コード長 489 bytes
コンパイル時間 1,963 ms
コンパイル使用メモリ 209,232 KB
実行使用メモリ 16,280 KB
最終ジャッジ日時 2024-06-22 17:11:06
合計ジャッジ時間 3,355 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 1 ms
6,944 KB
testcase_07 AC 1 ms
6,944 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 41 ms
13,932 KB
testcase_10 AC 36 ms
13,864 KB
testcase_11 AC 37 ms
14,904 KB
testcase_12 AC 29 ms
16,280 KB
testcase_13 AC 28 ms
15,328 KB
testcase_14 AC 26 ms
14,704 KB
testcase_15 AC 27 ms
16,064 KB
testcase_16 AC 29 ms
15,536 KB
testcase_17 AC 29 ms
12,060 KB
testcase_18 AC 19 ms
12,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std;

void main() {
    string S;
    readf("%s\n", S);

    auto len = S.length.to!int;
    auto cnts = new int[](len+1);
    foreach (i, s; S) {
        cnts[i+1] = cnts[i] + (s == 'A' ? 1 : -1);
    }

    int M = len * 2 + 1;
    auto pos = new int[][](M);
    foreach (i, cnt; cnts) {
        pos[len+cnt] ~= i.to!int;
    }

    int res;
    foreach (i; 0 .. M) {
        if (pos[i].empty) continue;

        res = max(res, pos[i].back-pos[i].front);
    }

    res.writeln;
}
0