結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
53,120 KB
testcase_01 AC 52 ms
52,992 KB
testcase_02 AC 48 ms
53,248 KB
testcase_03 AC 45 ms
52,992 KB
testcase_04 AC 45 ms
53,120 KB
testcase_05 AC 47 ms
53,248 KB
testcase_06 AC 44 ms
53,120 KB
testcase_07 AC 45 ms
52,864 KB
testcase_08 AC 45 ms
53,120 KB
testcase_09 AC 133 ms
108,160 KB
testcase_10 AC 103 ms
92,724 KB
testcase_11 AC 101 ms
93,184 KB
testcase_12 AC 82 ms
77,824 KB
testcase_13 AC 93 ms
77,312 KB
testcase_14 AC 91 ms
77,824 KB
testcase_15 AC 83 ms
77,824 KB
testcase_16 AC 81 ms
78,208 KB
testcase_17 AC 102 ms
92,288 KB
testcase_18 AC 87 ms
89,728 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