結果

問題 No.672 最長AB列
ユーザー htkbhtkb
提出日時 2018-04-14 14:18:27
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 287 ms / 2,000 ms
コード長 316 bytes
コンパイル時間 95 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 58,800 KB
最終ジャッジ日時 2024-06-27 20:08:00
合計ジャッジ時間 3,054 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 29 ms
10,624 KB
testcase_05 AC 29 ms
10,624 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 30 ms
10,624 KB
testcase_09 AC 287 ms
58,800 KB
testcase_10 AC 221 ms
41,856 KB
testcase_11 AC 226 ms
41,668 KB
testcase_12 AC 142 ms
13,924 KB
testcase_13 AC 161 ms
18,792 KB
testcase_14 AC 143 ms
14,432 KB
testcase_15 AC 148 ms
15,840 KB
testcase_16 AC 152 ms
16,736 KB
testcase_17 AC 230 ms
38,516 KB
testcase_18 AC 134 ms
12,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = input()
a = [0]*len(s)
a[0] = 1 if s[0] == "A" else -1
table = {0: [0, 0], a[0]: [1, 0]}
for i in range(1, len(s)):
    a[i] = a[i-1] + (-1, 1)[s[i]=="A"]
    if a[i] not in table:
        table[a[i]] = [i+1, 0]
    else:
        table[a[i]][1] = i+1

result = [b-a for a, b in table.values()]
print(max(result))
0