結果

問題 No.672 最長AB列
ユーザー fumofumofunifumofumofuni
提出日時 2023-06-21 01:53:22
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 212 ms / 2,000 ms
コード長 226 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,524 KB
最終ジャッジ日時 2024-06-28 12:36:50
合計ジャッジ時間 2,921 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,496 KB
testcase_01 AC 33 ms
10,496 KB
testcase_02 AC 31 ms
10,368 KB
testcase_03 AC 29 ms
10,368 KB
testcase_04 AC 30 ms
10,240 KB
testcase_05 AC 29 ms
10,240 KB
testcase_06 AC 29 ms
10,496 KB
testcase_07 AC 29 ms
10,368 KB
testcase_08 AC 29 ms
10,496 KB
testcase_09 AC 116 ms
21,524 KB
testcase_10 AC 153 ms
18,452 KB
testcase_11 AC 159 ms
18,456 KB
testcase_12 AC 188 ms
16,820 KB
testcase_13 AC 212 ms
16,820 KB
testcase_14 AC 188 ms
16,836 KB
testcase_15 AC 185 ms
16,888 KB
testcase_16 AC 198 ms
16,832 KB
testcase_17 AC 173 ms
18,576 KB
testcase_18 AC 198 ms
16,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S=input()
N=len(S)
dp=[-1]*N*3
cum=0
dp[0]=0
ans=0
for i in range(N):
    if S[i]=='A':
        cum+=1
    else :
        cum-=1
    if dp[cum]!=-1:
        ans = max(ans,i+1-dp[cum])
    else :
        dp[cum]=i+1

print(ans)
0