結果

問題 No.672 最長AB列
ユーザー roarisroaris
提出日時 2019-07-27 10:45:15
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 325 ms / 2,000 ms
コード長 409 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 54,884 KB
最終ジャッジ日時 2024-07-02 10:49:05
合計ジャッジ時間 4,005 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,368 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 29 ms
10,496 KB
testcase_03 AC 30 ms
10,496 KB
testcase_04 AC 31 ms
10,624 KB
testcase_05 AC 31 ms
10,496 KB
testcase_06 AC 32 ms
10,624 KB
testcase_07 AC 31 ms
10,624 KB
testcase_08 AC 30 ms
10,368 KB
testcase_09 AC 325 ms
54,884 KB
testcase_10 AC 281 ms
36,192 KB
testcase_11 AC 274 ms
36,108 KB
testcase_12 AC 227 ms
14,160 KB
testcase_13 AC 244 ms
18,900 KB
testcase_14 AC 232 ms
14,416 KB
testcase_15 AC 242 ms
15,572 KB
testcase_16 AC 240 ms
16,592 KB
testcase_17 AC 273 ms
36,048 KB
testcase_18 AC 231 ms
12,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

S = input()
mark_dict = defaultdict(list)
cnt = [0]
mark_dict[0].append(0)
ans = 0

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

print(ans)
0