結果

問題 No.672 最長AB列
ユーザー alexara1123alexara1123
提出日時 2019-09-21 10:53:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 102 ms / 2,000 ms
コード長 585 bytes
コンパイル時間 234 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 116,376 KB
最終ジャッジ日時 2024-09-17 12:17:54
合計ジャッジ時間 2,043 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,760 KB
testcase_01 AC 41 ms
54,144 KB
testcase_02 AC 40 ms
53,504 KB
testcase_03 AC 41 ms
53,504 KB
testcase_04 AC 38 ms
53,504 KB
testcase_05 AC 38 ms
53,632 KB
testcase_06 AC 38 ms
53,632 KB
testcase_07 AC 37 ms
54,016 KB
testcase_08 AC 37 ms
53,504 KB
testcase_09 AC 102 ms
116,376 KB
testcase_10 AC 96 ms
101,792 KB
testcase_11 AC 93 ms
100,992 KB
testcase_12 AC 75 ms
89,436 KB
testcase_13 AC 71 ms
89,344 KB
testcase_14 AC 74 ms
89,856 KB
testcase_15 AC 79 ms
89,728 KB
testcase_16 AC 75 ms
89,212 KB
testcase_17 AC 86 ms
100,980 KB
testcase_18 AC 63 ms
88,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict, Counter

def main():
    s = list(input())
    n = len(s)
    
    l = [0] * (n)
    if s[0] == "A":
        l[0] = 1
    else:
        l[0] = -1
    for i in range(1, n):
        if s[i] == "A":
            l[i] = l[i-1] + 1
        else:
            l[i] = l[i - 1] - 1
    l = [0] + l

    d = defaultdict(list)
    for i in range(n+1):
        d[l[i]].append(i)

    ans = 0
    for k in d.keys():
        if len(d[k]) <= 1:
            continue
        ans = max(ans, d[k][-1] - d[k][0])
    print(ans)


if __name__ == '__main__':
    main()
0