結果

問題 No.672 最長AB列
ユーザー ronpooronpoo
提出日時 2023-11-21 13:27:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 80 ms / 2,000 ms
コード長 277 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 82,108 KB
実行使用メモリ 110,636 KB
最終ジャッジ日時 2024-09-26 07:09:06
合計ジャッジ時間 2,247 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,268 KB
testcase_01 AC 35 ms
52,416 KB
testcase_02 AC 35 ms
52,244 KB
testcase_03 AC 35 ms
52,680 KB
testcase_04 AC 36 ms
52,064 KB
testcase_05 AC 35 ms
52,544 KB
testcase_06 AC 37 ms
52,080 KB
testcase_07 AC 35 ms
52,496 KB
testcase_08 AC 34 ms
52,556 KB
testcase_09 AC 80 ms
110,636 KB
testcase_10 AC 75 ms
94,296 KB
testcase_11 AC 73 ms
95,612 KB
testcase_12 AC 62 ms
77,920 KB
testcase_13 AC 60 ms
77,532 KB
testcase_14 AC 60 ms
78,508 KB
testcase_15 AC 59 ms
77,104 KB
testcase_16 AC 62 ms
78,076 KB
testcase_17 AC 71 ms
95,188 KB
testcase_18 AC 58 ms
77,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()
L = len(S)

A = [0]
for i in range(L):
    if S[i] == 'A':
        A.append(A[-1] + 1)
    else:
        A.append(A[-1] - 1)

ans = 0
d = dict()
for i in range(L+1):
    if A[i] not in d:
        d[A[i]] = i
    else:
        ans = max(ans, i - d[A[i]])
print(ans)
0