結果

問題 No.672 最長AB列
ユーザー fumofumofunifumofumofuni
提出日時 2023-06-21 01:51:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 75 ms / 2,000 ms
コード長 233 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 82,188 KB
実行使用メモリ 94,848 KB
最終ジャッジ日時 2024-06-28 12:34:47
合計ジャッジ時間 1,925 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,224 KB
testcase_01 AC 38 ms
51,712 KB
testcase_02 AC 37 ms
51,840 KB
testcase_03 AC 38 ms
51,840 KB
testcase_04 AC 38 ms
52,224 KB
testcase_05 AC 37 ms
51,968 KB
testcase_06 AC 37 ms
51,840 KB
testcase_07 AC 37 ms
51,840 KB
testcase_08 AC 38 ms
51,584 KB
testcase_09 AC 75 ms
94,848 KB
testcase_10 AC 66 ms
77,440 KB
testcase_11 AC 66 ms
79,104 KB
testcase_12 AC 55 ms
62,720 KB
testcase_13 AC 53 ms
61,312 KB
testcase_14 AC 55 ms
62,592 KB
testcase_15 AC 54 ms
62,720 KB
testcase_16 AC 55 ms
62,464 KB
testcase_17 AC 63 ms
77,952 KB
testcase_18 AC 47 ms
59,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S=input()
N=len(S)
mp=dict({})
cum=0
mp[cum]=0
ans=0
for i in range(N):
    if S[i]=='A':
        cum+=1
    else :
        cum-=1
    if cum in mp.keys():
        ans = max(ans,i+1-mp[cum])
    else :
        mp[cum]=i+1

print(ans)
0