結果

問題 No.672 最長AB列
ユーザー titiatitia
提出日時 2024-07-22 03:26:17
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 365 ms / 2,000 ms
コード長 285 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 56,096 KB
最終ジャッジ日時 2024-07-22 03:26:29
合計ジャッジ時間 3,240 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 29 ms
10,624 KB
testcase_09 AC 365 ms
56,096 KB
testcase_10 AC 244 ms
39,648 KB
testcase_11 AC 247 ms
39,688 KB
testcase_12 AC 125 ms
22,096 KB
testcase_13 AC 135 ms
27,212 KB
testcase_14 AC 127 ms
22,604 KB
testcase_15 AC 127 ms
24,016 KB
testcase_16 AC 132 ms
24,524 KB
testcase_17 AC 254 ms
40,132 KB
testcase_18 AC 112 ms
20,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

S=input()

A=[0]
for s in S:
    if s=="A":
        A.append(A[-1]+1)
    else:
        A.append(A[-1]-1)
        
D=defaultdict(list)

for i in range(len(A)):
    D[A[i]].append(i)

ANS=0

for d in D:
    ANS=max(ANS,D[d][-1]-D[d][0])

print(ANS)
0