結果

問題 No.672 最長AB列
ユーザー i_takui_taku
提出日時 2024-06-07 12:49:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 120 ms / 2,000 ms
コード長 342 bytes
コンパイル時間 243 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 108,672 KB
最終ジャッジ日時 2024-06-07 12:49:19
合計ジャッジ時間 2,281 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,504 KB
testcase_01 AC 43 ms
53,376 KB
testcase_02 AC 42 ms
53,376 KB
testcase_03 AC 41 ms
52,992 KB
testcase_04 AC 42 ms
53,760 KB
testcase_05 AC 41 ms
53,376 KB
testcase_06 AC 41 ms
53,248 KB
testcase_07 AC 41 ms
53,760 KB
testcase_08 AC 41 ms
53,632 KB
testcase_09 AC 120 ms
108,672 KB
testcase_10 AC 91 ms
93,052 KB
testcase_11 AC 89 ms
93,312 KB
testcase_12 AC 72 ms
78,208 KB
testcase_13 AC 72 ms
77,696 KB
testcase_14 AC 114 ms
77,952 KB
testcase_15 AC 73 ms
77,952 KB
testcase_16 AC 70 ms
77,696 KB
testcase_17 AC 87 ms
92,416 KB
testcase_18 AC 75 ms
90,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict


S = input()
cnt = [0] * (len(S) + 1)
for i, c in enumerate(S):
    if c == 'A':
        cnt[i + 1] = cnt[i] + 1
    else:
        cnt[i + 1] = cnt[i] - 1
idx = defaultdict(list)
for i, v in enumerate(cnt):
    idx[v].append(i)
ans = 0
for k, v in idx.items():
    ans = max(ans, v[-1] - v[0])
print(ans)
0