結果

問題 No.672 最長AB列
ユーザー syunsukesyunsuke
提出日時 2019-06-02 17:40:41
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 347 bytes
コンパイル時間 76 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 34,384 KB
最終ジャッジ日時 2024-09-17 20:12:52
合計ジャッジ時間 4,167 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,624 KB
testcase_01 AC 26 ms
10,624 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 28 ms
10,624 KB
testcase_04 WA -
testcase_05 AC 25 ms
10,624 KB
testcase_06 AC 26 ms
10,624 KB
testcase_07 AC 26 ms
10,624 KB
testcase_08 AC 26 ms
10,624 KB
testcase_09 AC 285 ms
31,312 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 272 ms
31,184 KB
testcase_14 WA -
testcase_15 AC 274 ms
31,304 KB
testcase_16 AC 282 ms
31,308 KB
testcase_17 AC 285 ms
34,376 KB
testcase_18 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

A=list(input())

CNT=len(A)
S=[len(A)+1 for i in range(len(A)*2+5)]
E=[0 for i in range(len(A)*2+5)]
for i in range(len(A)):
    if A[i]=="A":
        CNT+=1
    else:
        CNT-=1
    if E[CNT]<i:
        E[CNT]=i
    if S[CNT]>i:
        S[CNT]=i
S[0]=0
ans=0
for i in range(len(S)):
    if ans<(E[i]-S[i]):
        ans=(E[i]-S[i])

print(ans)
0