結果

問題 No.672 最長AB列
ユーザー mlihua09mlihua09
提出日時 2020-09-14 21:25:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 54 ms / 2,000 ms
コード長 278 bytes
コンパイル時間 138 ms
コンパイル使用メモリ 82,556 KB
実行使用メモリ 77,852 KB
最終ジャッジ日時 2024-06-22 00:56:21
合計ジャッジ時間 1,857 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,676 KB
testcase_01 AC 33 ms
53,216 KB
testcase_02 AC 30 ms
52,500 KB
testcase_03 AC 32 ms
52,616 KB
testcase_04 AC 32 ms
52,820 KB
testcase_05 AC 29 ms
52,920 KB
testcase_06 AC 31 ms
52,408 KB
testcase_07 AC 30 ms
52,892 KB
testcase_08 AC 31 ms
53,880 KB
testcase_09 AC 47 ms
73,612 KB
testcase_10 AC 49 ms
74,620 KB
testcase_11 AC 54 ms
77,852 KB
testcase_12 AC 54 ms
74,188 KB
testcase_13 AC 50 ms
73,828 KB
testcase_14 AC 52 ms
74,848 KB
testcase_15 AC 53 ms
75,820 KB
testcase_16 AC 53 ms
75,264 KB
testcase_17 AC 50 ms
74,572 KB
testcase_18 AC 49 ms
73,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


S = input()

n = len(S)

M = [-1] * (2 * n + 1)
m = [n] * (2 * n + 1)

x = 0
m[n] = -1
for i in range(n):
    if S[i] == 'A':
        x += 1
    else:
        x -= 1
    M[x + n] = i
    if m[x + n] == n:
        m[x + n] = i

print(max(M[i] - m[i] for i in range(2 * n + 1)))
0