結果

問題 No.672 最長AB列
ユーザー tamatotamato
提出日時 2020-03-04 20:54:53
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 394 bytes
コンパイル時間 701 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 101,292 KB
最終ジャッジ日時 2024-10-14 00:28:47
合計ジャッジ時間 2,660 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,256 KB
testcase_01 AC 39 ms
52,200 KB
testcase_02 AC 34 ms
52,216 KB
testcase_03 AC 37 ms
53,356 KB
testcase_04 WA -
testcase_05 AC 37 ms
53,184 KB
testcase_06 AC 36 ms
52,692 KB
testcase_07 AC 36 ms
53,172 KB
testcase_08 AC 36 ms
52,204 KB
testcase_09 AC 72 ms
101,292 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 55 ms
68,584 KB
testcase_14 WA -
testcase_15 AC 57 ms
69,620 KB
testcase_16 AC 56 ms
69,796 KB
testcase_17 AC 63 ms
88,084 KB
testcase_18 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    import sys
    input = sys.stdin.readline

    S = input().rstrip('\n')
    dic = {}
    tmp = 0
    ans = 0
    for i, s in enumerate(S):
        if s == 'A':
            tmp += 1
        else:
            tmp -= 1
        if tmp not in dic:
            dic[tmp] = i
        else:
            ans = max(ans, i - dic[tmp])
    print(ans)


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