結果

問題 No.672 最長AB列
ユーザー Mr.FukuMr.Fuku
提出日時 2018-07-08 22:05:34
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 293 bytes
コンパイル時間 244 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 38,392 KB
最終ジャッジ日時 2024-07-08 00:34:48
合計ジャッジ時間 3,547 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,240 KB
testcase_01 AC 31 ms
10,496 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 30 ms
10,496 KB
testcase_05 AC 30 ms
10,496 KB
testcase_06 AC 31 ms
10,368 KB
testcase_07 AC 30 ms
10,496 KB
testcase_08 AC 30 ms
10,496 KB
testcase_09 WA -
testcase_10 AC 205 ms
25,288 KB
testcase_11 AC 204 ms
25,164 KB
testcase_12 AC 180 ms
12,360 KB
testcase_13 AC 197 ms
12,488 KB
testcase_14 AC 186 ms
12,232 KB
testcase_15 AC 188 ms
12,228 KB
testcase_16 AC 190 ms
12,228 KB
testcase_17 AC 210 ms
25,400 KB
testcase_18 AC 181 ms
12,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

lst = list(input())

max_length = 0
count_list = {0:-1}
count = 0

for i in range(len(lst)):
    if lst[i]=="A":
        count += 1
    else:
        count -= 1
    count_list.setdefault(count,i)
    max_length = max(max_length,i-count_list[count])

print(max_length if max_length > 1 else -1)
0