結果

問題 No.672 最長AB列
ユーザー irumo8202irumo8202
提出日時 2022-01-28 21:06:29
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 205 bytes
コンパイル時間 128 ms
コンパイル使用メモリ 82,536 KB
実行使用メモリ 103,628 KB
最終ジャッジ日時 2024-06-09 13:50:24
合計ジャッジ時間 2,018 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
52,408 KB
testcase_01 AC 31 ms
52,464 KB
testcase_02 AC 33 ms
52,076 KB
testcase_03 AC 34 ms
52,852 KB
testcase_04 WA -
testcase_05 AC 33 ms
52,660 KB
testcase_06 AC 33 ms
52,612 KB
testcase_07 AC 33 ms
52,948 KB
testcase_08 AC 32 ms
52,276 KB
testcase_09 AC 73 ms
103,628 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 49 ms
69,876 KB
testcase_14 WA -
testcase_15 AC 49 ms
71,096 KB
testcase_16 AC 49 ms
70,836 KB
testcase_17 AC 60 ms
87,428 KB
testcase_18 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

S = [1 if x == "A" else -1 for x in input()]
left = {}

ans = 0
x = 0
for i, s in enumerate(S, 1):
    x += s
    if x in left:
        ans = max(ans, i - left[x])
    else:
        left[x] = i

print(ans)
0