結果
| 問題 | No.672 最長AB列 | 
| コンテスト | |
| ユーザー |  双六 | 
| 提出日時 | 2020-07-25 15:22:09 | 
| 言語 | PyPy3 (7.3.15) | 
| 結果 | 
                                WA
                                 
                             | 
| 実行時間 | - | 
| コード長 | 515 bytes | 
| コンパイル時間 | 176 ms | 
| コンパイル使用メモリ | 82,432 KB | 
| 実行使用メモリ | 98,688 KB | 
| 最終ジャッジ日時 | 2024-06-27 06:36:52 | 
| 合計ジャッジ時間 | 2,484 ms | 
| ジャッジサーバーID (参考情報) | judge5 / judge1 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 3 | 
| other | AC * 5 WA * 11 | 
ソースコード
# import sys; input = sys.stdin.buffer.readline
# sys.setrecursionlimit(10**7)
from collections import defaultdict
con = 10 ** 9 + 7; INF = float("inf")
def getlist():
	return list(map(int, input().split()))
import random
#処理内容
def main():
	L = input()
	N = len(L)
	D = defaultdict(lambda:-1)
	D[0] = 0
	ans = 0
	val = 0
	for i in range(N):
		if L[i] == "A":
			val += 1
		else:
			val -= 1
		if D[val] != -1:
			ans = max(ans, i - D[val])
		D[val] = i
	print(ans)
	
if __name__ == '__main__':
	main()
            
            
            
        