結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,368 KB
testcase_01 AC 31 ms
10,240 KB
testcase_02 AC 30 ms
10,240 KB
testcase_03 AC 30 ms
10,240 KB
testcase_04 AC 27 ms
10,368 KB
testcase_05 AC 30 ms
10,496 KB
testcase_06 AC 28 ms
10,240 KB
testcase_07 AC 28 ms
10,368 KB
testcase_08 AC 29 ms
10,240 KB
testcase_09 AC 194 ms
38,520 KB
testcase_10 AC 200 ms
25,156 KB
testcase_11 AC 195 ms
25,164 KB
testcase_12 AC 177 ms
12,360 KB
testcase_13 AC 197 ms
12,356 KB
testcase_14 AC 180 ms
12,484 KB
testcase_15 AC 185 ms
12,360 KB
testcase_16 AC 187 ms
12,360 KB
testcase_17 AC 203 ms
25,244 KB
testcase_18 AC 174 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 0)
0