結果

問題 No.672 最長AB列
ユーザー pika4632pika4632
提出日時 2018-05-13 12:09:51
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 294 ms / 2,000 ms
コード長 307 bytes
コンパイル時間 100 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 38,976 KB
最終ジャッジ日時 2024-06-28 09:53:27
合計ジャッジ時間 3,892 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,368 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 30 ms
10,496 KB
testcase_03 AC 31 ms
10,368 KB
testcase_04 AC 30 ms
10,496 KB
testcase_05 AC 30 ms
10,496 KB
testcase_06 AC 31 ms
10,496 KB
testcase_07 AC 30 ms
10,496 KB
testcase_08 AC 30 ms
10,496 KB
testcase_09 AC 294 ms
38,976 KB
testcase_10 AC 281 ms
27,160 KB
testcase_11 AC 275 ms
27,352 KB
testcase_12 AC 238 ms
13,908 KB
testcase_13 AC 250 ms
18,648 KB
testcase_14 AC 244 ms
14,676 KB
testcase_15 AC 245 ms
15,960 KB
testcase_16 AC 254 ms
16,728 KB
testcase_17 AC 285 ms
28,316 KB
testcase_18 AC 240 ms
12,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = input()
mx = 0
ss = [0 for a 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