結果

問題 No.672 最長AB列
ユーザー H20H20
提出日時 2020-11-05 13:22:33
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 275 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,344 KB
実行使用メモリ 94,592 KB
最終ジャッジ日時 2024-07-22 10:57:08
合計ジャッジ時間 1,934 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,584 KB
testcase_01 AC 36 ms
51,712 KB
testcase_02 AC 38 ms
51,840 KB
testcase_03 AC 37 ms
52,096 KB
testcase_04 WA -
testcase_05 AC 37 ms
51,712 KB
testcase_06 AC 38 ms
52,224 KB
testcase_07 AC 38 ms
52,096 KB
testcase_08 AC 37 ms
51,840 KB
testcase_09 AC 79 ms
94,592 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 56 ms
62,080 KB
testcase_14 WA -
testcase_15 AC 58 ms
62,976 KB
testcase_16 AC 58 ms
62,848 KB
testcase_17 AC 68 ms
77,952 KB
testcase_18 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

S=input()
L = len(S)
d = {}
d[0] = 0
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