結果

問題 No.672 最長AB列
ユーザー AT274_AT274_
提出日時 2019-10-29 18:26:07
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 238 ms / 2,000 ms
コード長 331 bytes
コンパイル時間 312 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 38,564 KB
最終ジャッジ日時 2024-09-14 21:34:11
合計ジャッジ時間 3,959 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,496 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 29 ms
10,368 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 30 ms
10,496 KB
testcase_05 AC 30 ms
10,496 KB
testcase_06 AC 29 ms
10,496 KB
testcase_07 AC 30 ms
10,368 KB
testcase_08 AC 30 ms
10,368 KB
testcase_09 AC 174 ms
38,564 KB
testcase_10 AC 205 ms
26,560 KB
testcase_11 AC 202 ms
26,784 KB
testcase_12 AC 218 ms
13,652 KB
testcase_13 AC 238 ms
18,516 KB
testcase_14 AC 225 ms
14,036 KB
testcase_15 AC 228 ms
15,440 KB
testcase_16 AC 229 ms
16,464 KB
testcase_17 AC 210 ms
28,152 KB
testcase_18 AC 224 ms
12,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()
N = len(S)
cnt = [0] * (N + 1)
farthest = {0: 0}

ans = 0
for i, s in enumerate(S, start=1):
    if s == 'A':
        cnt[i] = cnt[i - 1] + 1
    else:
        cnt[i] = cnt[i - 1] - 1

    if cnt[i] not in farthest.keys():
        farthest[cnt[i]] = i
    else:
        ans = max(ans, i - farthest[cnt[i]])

print(ans)
0