結果

問題 No.672 最長AB列
ユーザー ああいいああいい
提出日時 2022-03-30 21:53:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 84 ms / 2,000 ms
コード長 301 bytes
コンパイル時間 360 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 96,940 KB
最終ジャッジ日時 2024-04-27 11:33:53
合計ジャッジ時間 2,372 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,532 KB
testcase_01 AC 43 ms
53,984 KB
testcase_02 AC 44 ms
54,576 KB
testcase_03 AC 44 ms
55,128 KB
testcase_04 AC 45 ms
54,940 KB
testcase_05 AC 43 ms
55,248 KB
testcase_06 AC 43 ms
54,188 KB
testcase_07 AC 43 ms
54,796 KB
testcase_08 AC 42 ms
53,752 KB
testcase_09 AC 84 ms
96,940 KB
testcase_10 AC 68 ms
81,080 KB
testcase_11 AC 75 ms
80,892 KB
testcase_12 AC 60 ms
64,904 KB
testcase_13 AC 56 ms
62,940 KB
testcase_14 AC 60 ms
64,264 KB
testcase_15 AC 59 ms
65,532 KB
testcase_16 AC 60 ms
64,652 KB
testcase_17 AC 70 ms
79,528 KB
testcase_18 AC 53 ms
61,720 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