結果

問題 No.672 最長AB列
ユーザー NoneNone
提出日時 2021-03-05 20:32:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 79 ms / 2,000 ms
コード長 226 bytes
コンパイル時間 256 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 95,544 KB
最終ジャッジ日時 2024-10-06 23:02:20
合計ジャッジ時間 2,132 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,684 KB
testcase_01 AC 39 ms
53,052 KB
testcase_02 AC 37 ms
53,428 KB
testcase_03 AC 37 ms
52,132 KB
testcase_04 AC 35 ms
53,176 KB
testcase_05 AC 36 ms
53,536 KB
testcase_06 AC 37 ms
52,068 KB
testcase_07 AC 37 ms
52,892 KB
testcase_08 AC 37 ms
52,544 KB
testcase_09 AC 79 ms
95,544 KB
testcase_10 AC 64 ms
83,864 KB
testcase_11 AC 72 ms
88,708 KB
testcase_12 AC 62 ms
75,744 KB
testcase_13 AC 61 ms
75,660 KB
testcase_14 AC 62 ms
76,104 KB
testcase_15 AC 65 ms
75,824 KB
testcase_16 AC 61 ms
75,692 KB
testcase_17 AC 74 ms
89,800 KB
testcase_18 AC 51 ms
73,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S=input().rstrip()
N=len(S)

res=0
c=dict()
c[0]=-1
A,B=0,0
for i in range(N):
    s=S[i]
    if s=="A":
        A+=1
    else:
        B+=1
    if A-B in c:
        res=max(i-c[A-B],res)
    else:
        c[A-B]=i

print(res)
0