結果

問題 No.672 最長AB列
ユーザー tails1434tails1434
提出日時 2020-01-23 07:19:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 71 ms / 2,000 ms
コード長 397 bytes
コンパイル時間 225 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 102,272 KB
最終ジャッジ日時 2024-07-18 10:36:15
合計ジャッジ時間 2,565 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,120 KB
testcase_01 AC 35 ms
53,376 KB
testcase_02 AC 34 ms
53,120 KB
testcase_03 AC 34 ms
53,504 KB
testcase_04 AC 34 ms
52,992 KB
testcase_05 AC 35 ms
52,992 KB
testcase_06 AC 35 ms
53,888 KB
testcase_07 AC 34 ms
53,504 KB
testcase_08 AC 36 ms
53,504 KB
testcase_09 AC 71 ms
102,272 KB
testcase_10 AC 63 ms
88,064 KB
testcase_11 AC 71 ms
91,776 KB
testcase_12 AC 54 ms
70,656 KB
testcase_13 AC 50 ms
68,988 KB
testcase_14 AC 53 ms
70,784 KB
testcase_15 AC 53 ms
70,912 KB
testcase_16 AC 52 ms
70,528 KB
testcase_17 AC 68 ms
89,728 KB
testcase_18 AC 46 ms
69,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

def main():
    S = input()
    cnt = 0
    ans = 0
    d = defaultdict(int)
    d[0] = -1
    for i, s in enumerate(S):
        if s == 'A':
            cnt += 1
        else:
            cnt -= 1

        if cnt in d:
            ans = max(ans, i - d[cnt])
        else:
            d[cnt] = i

    print(ans)
    






if __name__ == "__main__":
    main()
0