結果

問題 No.672 最長AB列
ユーザー kokatsukokatsu
提出日時 2022-12-28 21:09:24
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 46 ms / 2,000 ms
コード長 489 bytes
コンパイル時間 2,072 ms
コンパイル使用メモリ 202,616 KB
実行使用メモリ 16,968 KB
最終ジャッジ日時 2023-09-04 19:30:03
合計ジャッジ時間 5,580 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 2 ms
4,376 KB
testcase_02 AC 2 ms
4,380 KB
testcase_03 AC 1 ms
4,380 KB
testcase_04 AC 1 ms
4,376 KB
testcase_05 AC 1 ms
4,380 KB
testcase_06 AC 2 ms
4,376 KB
testcase_07 AC 1 ms
4,380 KB
testcase_08 AC 1 ms
4,380 KB
testcase_09 AC 46 ms
15,104 KB
testcase_10 AC 41 ms
14,500 KB
testcase_11 AC 41 ms
12,988 KB
testcase_12 AC 33 ms
16,968 KB
testcase_13 AC 33 ms
16,672 KB
testcase_14 AC 33 ms
16,548 KB
testcase_15 AC 33 ms
16,220 KB
testcase_16 AC 33 ms
14,736 KB
testcase_17 AC 35 ms
15,796 KB
testcase_18 AC 22 ms
13,976 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