結果

問題 No.672 最長AB列
ユーザー FromBooskaFromBooska
提出日時 2023-02-22 15:28:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 115 ms / 2,000 ms
コード長 607 bytes
コンパイル時間 214 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 117,888 KB
最終ジャッジ日時 2024-07-22 17:05:36
合計ジャッジ時間 2,395 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,504 KB
testcase_01 AC 41 ms
53,888 KB
testcase_02 AC 39 ms
53,888 KB
testcase_03 AC 38 ms
53,504 KB
testcase_04 AC 37 ms
53,120 KB
testcase_05 AC 41 ms
53,760 KB
testcase_06 AC 39 ms
53,376 KB
testcase_07 AC 35 ms
53,888 KB
testcase_08 AC 39 ms
53,376 KB
testcase_09 AC 115 ms
117,888 KB
testcase_10 AC 93 ms
99,712 KB
testcase_11 AC 87 ms
93,340 KB
testcase_12 AC 70 ms
89,600 KB
testcase_13 AC 71 ms
89,556 KB
testcase_14 AC 70 ms
89,488 KB
testcase_15 AC 70 ms
89,472 KB
testcase_16 AC 69 ms
89,088 KB
testcase_17 AC 83 ms
92,612 KB
testcase_18 AC 69 ms
89,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 二重ループはできない, 2*10**5
# 入力例1,AAABBA。+1 for A, -1 for Bとすれば
# levels = [0, 1, 2, 3, 2, 1, 2]
# 同じ数字で一番離れている区間が答え

S = input()
levels = [0]
for s in S:
    if s == 'A':
        levels.append(levels[-1]+1)
    if s == 'B':
        levels.append(levels[-1]-1)
        
#print(levels)

from collections import defaultdict
dic = defaultdict(list)
for i in range(len(levels)):
    dic[levels[i]].append(i)

#print(dic)

ans = 0
for d in dic:
    if len(dic[d]) >= 2:
        calc = dic[d][-1]-dic[d][0]
        ans = max(ans, calc)
print(ans)
0