結果

問題 No.672 最長AB列
ユーザー ああいいああいい
提出日時 2022-03-30 21:53:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 81 ms / 2,000 ms
コード長 301 bytes
コンパイル時間 909 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 97,356 KB
最終ジャッジ日時 2024-11-15 13:09:52
合計ジャッジ時間 2,379 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,588 KB
testcase_01 AC 42 ms
54,256 KB
testcase_02 AC 42 ms
53,360 KB
testcase_03 AC 41 ms
54,104 KB
testcase_04 AC 44 ms
53,540 KB
testcase_05 AC 45 ms
55,200 KB
testcase_06 AC 43 ms
54,152 KB
testcase_07 AC 44 ms
54,256 KB
testcase_08 AC 42 ms
54,020 KB
testcase_09 AC 81 ms
97,356 KB
testcase_10 AC 68 ms
79,220 KB
testcase_11 AC 71 ms
81,116 KB
testcase_12 AC 59 ms
65,932 KB
testcase_13 AC 57 ms
63,784 KB
testcase_14 AC 62 ms
64,360 KB
testcase_15 AC 59 ms
64,060 KB
testcase_16 AC 58 ms
64,236 KB
testcase_17 AC 69 ms
81,088 KB
testcase_18 AC 53 ms
63,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()

from collections import defaultdict
d = defaultdict(int)

now = 0
ans = 0
d[now] = -1
for i in range(len(S)):
    if S[i] == "A":
        now += 1
    else:
        now -= 1
    if now in d:
        if i - d[now] > ans:
            ans = i - d[now]
    else:
        d[now] = i
print(ans)
0