結果

問題 No.672 最長AB列
ユーザー matsukin1111matsukin1111
提出日時 2018-12-14 10:38:51
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 289 ms / 2,000 ms
コード長 299 bytes
コンパイル時間 497 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 38,944 KB
最終ジャッジ日時 2024-09-25 04:59:31
合計ジャッジ時間 3,946 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 29 ms
10,496 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 30 ms
10,496 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 29 ms
10,496 KB
testcase_08 AC 30 ms
10,624 KB
testcase_09 AC 289 ms
38,944 KB
testcase_10 AC 278 ms
27,032 KB
testcase_11 AC 279 ms
27,376 KB
testcase_12 AC 238 ms
13,916 KB
testcase_13 AC 250 ms
18,772 KB
testcase_14 AC 241 ms
14,592 KB
testcase_15 AC 248 ms
15,960 KB
testcase_16 AC 248 ms
16,852 KB
testcase_17 AC 277 ms
28,548 KB
testcase_18 AC 238 ms
12,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = input()
mx = 0
ss = [0 for j in range(len(s)+1)]

sss = {0:0}

for a , b in enumerate(s):
    if b == "A":
        ss[a+1] = ss[a] + 1
    else:
        ss[a+1] = ss[a] - 1
    if not ss[a+1] in sss:
        sss[ss[a+1]]  = a + 1

for a , b in enumerate(ss):
    mx = max(mx,a-sss[b])
print(mx)
0