結果

問題 No.672 最長AB列
ユーザー 双六双六
提出日時 2020-07-25 15:27:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 85 ms / 2,000 ms
コード長 532 bytes
コンパイル時間 139 ms
コンパイル使用メモリ 81,980 KB
実行使用メモリ 98,576 KB
最終ジャッジ日時 2024-06-27 06:41:53
合計ジャッジ時間 2,110 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
56,500 KB
testcase_01 AC 43 ms
55,992 KB
testcase_02 AC 43 ms
55,152 KB
testcase_03 AC 44 ms
56,488 KB
testcase_04 AC 44 ms
56,856 KB
testcase_05 AC 44 ms
56,832 KB
testcase_06 AC 44 ms
55,440 KB
testcase_07 AC 44 ms
56,280 KB
testcase_08 AC 44 ms
55,964 KB
testcase_09 AC 85 ms
98,576 KB
testcase_10 AC 73 ms
84,056 KB
testcase_11 AC 80 ms
85,124 KB
testcase_12 AC 62 ms
68,576 KB
testcase_13 AC 58 ms
66,752 KB
testcase_14 AC 60 ms
67,072 KB
testcase_15 AC 62 ms
67,208 KB
testcase_16 AC 60 ms
66,992 KB
testcase_17 AC 72 ms
82,920 KB
testcase_18 AC 54 ms
65,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 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 + 1 - D[val])
		else:
			D[val] = i + 1

	print(ans)


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