結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
12,416 KB
testcase_01 AC 83 ms
12,160 KB
testcase_02 AC 82 ms
12,288 KB
testcase_03 AC 82 ms
12,032 KB
testcase_04 WA -
testcase_05 AC 83 ms
12,288 KB
testcase_06 AC 80 ms
12,160 KB
testcase_07 AC 80 ms
12,288 KB
testcase_08 AC 82 ms
12,160 KB
testcase_09 AC 184 ms
22,784 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 161 ms
12,672 KB
testcase_14 WA -
testcase_15 AC 164 ms
12,544 KB
testcase_16 AC 160 ms
12,544 KB
testcase_17 AC 179 ms
19,072 KB
testcase_18 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

S = gets.chomp

counter = Hash.new

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