結果

問題 No.672 最長AB列
ユーザー noriocnorioc
提出日時 2024-10-16 22:46:52
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 195 bytes
コンパイル時間 361 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 94,720 KB
最終ジャッジ日時 2024-10-16 22:46:55
合計ジャッジ時間 3,003 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,712 KB
testcase_01 AC 40 ms
51,840 KB
testcase_02 AC 39 ms
52,096 KB
testcase_03 AC 39 ms
51,712 KB
testcase_04 WA -
testcase_05 AC 40 ms
51,840 KB
testcase_06 AC 38 ms
51,760 KB
testcase_07 AC 40 ms
51,968 KB
testcase_08 AC 40 ms
51,840 KB
testcase_09 AC 83 ms
94,720 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 65 ms
75,392 KB
testcase_14 WA -
testcase_15 AC 70 ms
75,776 KB
testcase_16 AC 69 ms
75,776 KB
testcase_17 AC 78 ms
90,012 KB
testcase_18 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()
d = {}
h = 0
ans = 0
for i, c in enumerate(S):
    if c == 'A': h += 1
    if c == 'B': h -= 1

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

print(ans)
0