結果

問題 No.672 最長AB列
ユーザー lllllll88938494lllllll88938494
提出日時 2023-04-15 09:47:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 285 bytes
コンパイル時間 639 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 107,520 KB
最終ジャッジ日時 2024-10-10 22:21:03
合計ジャッジ時間 2,313 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
53,376 KB
testcase_01 AC 43 ms
53,504 KB
testcase_02 AC 44 ms
53,760 KB
testcase_03 AC 48 ms
53,632 KB
testcase_04 AC 44 ms
53,376 KB
testcase_05 AC 43 ms
53,504 KB
testcase_06 AC 44 ms
53,376 KB
testcase_07 AC 44 ms
52,992 KB
testcase_08 AC 46 ms
53,376 KB
testcase_09 AC 121 ms
107,520 KB
testcase_10 AC 87 ms
87,680 KB
testcase_11 AC 111 ms
100,992 KB
testcase_12 AC 87 ms
78,080 KB
testcase_13 AC 84 ms
77,568 KB
testcase_14 AC 85 ms
77,696 KB
testcase_15 AC 87 ms
77,952 KB
testcase_16 AC 86 ms
77,952 KB
testcase_17 AC 88 ms
88,576 KB
testcase_18 AC 71 ms
76,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
s = input()
cnt = defaultdict(list)
cnt[0].append(0)

ans = 0
t = 0
for i in range(len(s)):
    if s[i] == 'A':
        t += 1
    else:
        t -= 1
    if len(cnt[t]) > 0:
        ans = max((i+1)-cnt[t][0],ans)
    cnt[t].append(i+1)

print(ans)
0