結果

問題 No.672 最長AB列
ユーザー simansiman
提出日時 2020-09-29 04:49:52
言語 Ruby
(3.3.0)
結果
AC  
実行時間 180 ms / 2,000 ms
コード長 319 bytes
コンパイル時間 243 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 22,784 KB
最終ジャッジ日時 2024-07-03 07:30:34
合計ジャッジ時間 3,246 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
12,288 KB
testcase_01 AC 80 ms
12,160 KB
testcase_02 AC 79 ms
12,160 KB
testcase_03 AC 82 ms
12,288 KB
testcase_04 AC 82 ms
12,288 KB
testcase_05 AC 81 ms
12,160 KB
testcase_06 AC 76 ms
12,288 KB
testcase_07 AC 75 ms
12,288 KB
testcase_08 AC 76 ms
12,160 KB
testcase_09 AC 180 ms
22,784 KB
testcase_10 AC 179 ms
19,072 KB
testcase_11 AC 176 ms
19,072 KB
testcase_12 AC 160 ms
12,544 KB
testcase_13 AC 162 ms
12,672 KB
testcase_14 AC 159 ms
12,672 KB
testcase_15 AC 155 ms
12,544 KB
testcase_16 AC 160 ms
12,544 KB
testcase_17 AC 173 ms
18,944 KB
testcase_18 AC 156 ms
12,544 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

S = gets.chomp

counter = Hash.new
counter[0] = -1

a_cnt = 0
b_cnt = 0
ans = 0

S.each_char.with_index do |s, i|
  if s == 'A'
    a_cnt += 1
  else
    b_cnt += 1
  end

  diff = a_cnt - b_cnt

  if counter[diff]
    len = i - counter[diff]
    ans = len if ans < len
  else
    counter[diff] = i
  end
end

puts ans
0