結果

問題 No.672 最長AB列
ユーザー H20H20
提出日時 2020-11-05 13:24:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 71 ms / 2,000 ms
コード長 276 bytes
コンパイル時間 298 ms
コンパイル使用メモリ 82,332 KB
実行使用メモリ 95,848 KB
最終ジャッジ日時 2024-07-22 10:57:25
合計ジャッジ時間 1,886 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,068 KB
testcase_01 AC 36 ms
52,892 KB
testcase_02 AC 36 ms
52,884 KB
testcase_03 AC 35 ms
51,820 KB
testcase_04 AC 34 ms
51,856 KB
testcase_05 AC 35 ms
52,052 KB
testcase_06 AC 34 ms
52,156 KB
testcase_07 AC 35 ms
52,448 KB
testcase_08 AC 35 ms
53,092 KB
testcase_09 AC 71 ms
95,848 KB
testcase_10 AC 58 ms
78,368 KB
testcase_11 AC 62 ms
80,008 KB
testcase_12 AC 50 ms
62,956 KB
testcase_13 AC 46 ms
61,976 KB
testcase_14 AC 52 ms
62,808 KB
testcase_15 AC 48 ms
62,724 KB
testcase_16 AC 49 ms
62,652 KB
testcase_17 AC 61 ms
79,188 KB
testcase_18 AC 44 ms
60,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S=input()
L = len(S)
d = {}
d[0] = -1
cnt = 0
ans = 0
for i in range(L):
    if S[i]=='A':
        cnt += 1
    else:
        cnt -=1
    if cnt not in d:
        # キーが存在しない場合の処理
        d[cnt] = i
    else:
        ans = max(ans,i-d[cnt])
print(ans)
0