結果

問題 No.672 最長AB列
ユーザー ntudantuda
提出日時 2024-01-22 21:21:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 104 ms / 2,000 ms
コード長 314 bytes
コンパイル時間 142 ms
コンパイル使用メモリ 82,500 KB
実行使用メモリ 107,648 KB
最終ジャッジ日時 2024-09-28 06:29:50
合計ジャッジ時間 2,275 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
53,632 KB
testcase_01 AC 39 ms
53,632 KB
testcase_02 AC 43 ms
53,376 KB
testcase_03 AC 44 ms
53,504 KB
testcase_04 AC 41 ms
53,248 KB
testcase_05 AC 40 ms
53,504 KB
testcase_06 AC 41 ms
53,888 KB
testcase_07 AC 39 ms
53,504 KB
testcase_08 AC 40 ms
53,504 KB
testcase_09 AC 104 ms
107,648 KB
testcase_10 AC 90 ms
100,992 KB
testcase_11 AC 93 ms
92,928 KB
testcase_12 AC 66 ms
77,184 KB
testcase_13 AC 63 ms
76,928 KB
testcase_14 AC 63 ms
77,464 KB
testcase_15 AC 64 ms
77,440 KB
testcase_16 AC 66 ms
77,312 KB
testcase_17 AC 86 ms
91,228 KB
testcase_18 AC 66 ms
86,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()
tmp = 0
from collections import defaultdict
dic = defaultdict(list)
dic[0].append(0)
for i, s in enumerate(S, start=1):
    if s == "A":
        tmp += 1
    else:
        tmp -= 1
    dic[tmp].append(i)
ans = 0
for k,V in dic.items():
    if len(V) >= 2:
        ans = max(ans,V[-1] - V[0])
print(ans)
0