結果

問題 No.672 最長AB列
ユーザー Kiri8128Kiri8128
提出日時 2020-09-06 16:49:49
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 203 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 79,744 KB
最終ジャッジ日時 2024-05-06 21:14:00
合計ジャッジ時間 2,515 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
55,808 KB
testcase_01 AC 43 ms
55,808 KB
testcase_02 AC 42 ms
55,936 KB
testcase_03 AC 41 ms
55,936 KB
testcase_04 WA -
testcase_05 AC 42 ms
55,936 KB
testcase_06 AC 42 ms
55,936 KB
testcase_07 AC 42 ms
55,808 KB
testcase_08 AC 42 ms
55,808 KB
testcase_09 AC 49 ms
63,488 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 73 ms
79,744 KB
testcase_14 WA -
testcase_15 AC 84 ms
79,488 KB
testcase_16 AC 85 ms
79,608 KB
testcase_17 AC 69 ms
77,684 KB
testcase_18 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()
X = [1 << 19] * (1 << 19)
X[0] = 0
t = 0
ma = 0
for i, a in enumerate(S):
    if a == "A":
        t += 1
    else:
        t -= 1
    ma = max(ma, i - X[t])
    X[t] = min(X[t], i)
print(ma)
0