結果

問題 No.672 最長AB列
ユーザー noriocnorioc
提出日時 2024-10-16 22:48:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 88 ms / 2,000 ms
コード長 200 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 94,208 KB
最終ジャッジ日時 2024-10-16 22:48:17
合計ジャッジ時間 2,614 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,096 KB
testcase_01 AC 40 ms
51,584 KB
testcase_02 AC 36 ms
51,944 KB
testcase_03 AC 36 ms
52,096 KB
testcase_04 AC 36 ms
51,328 KB
testcase_05 AC 36 ms
51,584 KB
testcase_06 AC 35 ms
51,584 KB
testcase_07 AC 36 ms
51,456 KB
testcase_08 AC 41 ms
51,456 KB
testcase_09 AC 72 ms
94,208 KB
testcase_10 AC 62 ms
83,712 KB
testcase_11 AC 77 ms
91,392 KB
testcase_12 AC 62 ms
75,776 KB
testcase_13 AC 57 ms
73,856 KB
testcase_14 AC 62 ms
75,904 KB
testcase_15 AC 61 ms
75,736 KB
testcase_16 AC 88 ms
75,648 KB
testcase_17 AC 73 ms
89,996 KB
testcase_18 AC 50 ms
72,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()
d = {0: -1}
h = 0
ans = 0
for i, c in enumerate(S):
    if c == 'A': h += 1
    if c == 'B': h -= 1

    if h in d:
        ans = max(ans, i - d[h])
    else:
        d[h] = i

print(ans)
0