結果

問題 No.672 最長AB列
ユーザー lloyzlloyz
提出日時 2022-07-16 22:25:16
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 424 ms / 2,000 ms
コード長 296 bytes
コンパイル時間 76 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 54,792 KB
最終ジャッジ日時 2024-06-28 22:51:56
合計ジャッジ時間 2,848 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,368 KB
testcase_01 AC 27 ms
10,496 KB
testcase_02 AC 29 ms
10,496 KB
testcase_03 AC 28 ms
10,496 KB
testcase_04 AC 30 ms
10,496 KB
testcase_05 AC 29 ms
10,496 KB
testcase_06 AC 28 ms
10,496 KB
testcase_07 AC 26 ms
10,496 KB
testcase_08 AC 28 ms
10,624 KB
testcase_09 AC 424 ms
54,792 KB
testcase_10 AC 258 ms
36,100 KB
testcase_11 AC 247 ms
36,136 KB
testcase_12 AC 111 ms
20,384 KB
testcase_13 AC 115 ms
20,384 KB
testcase_14 AC 106 ms
20,252 KB
testcase_15 AC 111 ms
20,384 KB
testcase_16 AC 111 ms
20,256 KB
testcase_17 AC 252 ms
36,148 KB
testcase_18 AC 99 ms
20,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

S = list(input())

n = len(S)
C = defaultdict(list)
cnt = 0
C[0].append(0)
for i in range(n):
    if S[i] == 'A':
        cnt += 1
    else:
        cnt -= 1
    C[cnt].append(i + 1)
ans = 0
for L in C.values():
    ans = max(ans, max(L) - min(L))
print(ans)
0