結果

問題 No.672 最長AB列
ユーザー pluto77pluto77
提出日時 2018-04-14 11:43:52
言語 Python2
(2.7.18)
結果
AC  
実行時間 117 ms / 2,000 ms
コード長 218 bytes
コンパイル時間 960 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 33,608 KB
最終ジャッジ日時 2024-06-27 20:05:59
合計ジャッジ時間 3,016 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 13 ms
6,816 KB
testcase_01 AC 13 ms
6,940 KB
testcase_02 AC 13 ms
6,940 KB
testcase_03 AC 13 ms
6,940 KB
testcase_04 AC 12 ms
6,940 KB
testcase_05 AC 13 ms
6,940 KB
testcase_06 AC 12 ms
6,940 KB
testcase_07 AC 12 ms
6,944 KB
testcase_08 AC 12 ms
6,940 KB
testcase_09 AC 99 ms
33,608 KB
testcase_10 AC 111 ms
20,276 KB
testcase_11 AC 109 ms
20,188 KB
testcase_12 AC 113 ms
6,940 KB
testcase_13 AC 117 ms
7,040 KB
testcase_14 AC 112 ms
6,944 KB
testcase_15 AC 115 ms
6,944 KB
testcase_16 AC 113 ms
7,040 KB
testcase_17 AC 111 ms
20,276 KB
testcase_18 AC 113 ms
7,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki672
from collections import defaultdict

s=raw_input()
d=defaultdict(int)
p=0
d[0]=-1
res=0
for i in xrange(len(s)):
 if s[i]=='A':
  p+=1
 else:
  p-=1
 if p in d:
  res=max(res,i-d[p])
 else:
  d[p]=i
print res
0