結果

問題 No.672 最長AB列
ユーザー gemmarogemmaro
提出日時 2020-07-05 09:31:14
言語 Ruby
(3.3.0)
結果
AC  
実行時間 279 ms / 2,000 ms
コード長 377 bytes
コンパイル時間 52 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 34,304 KB
最終ジャッジ日時 2024-09-22 04:10:51
合計ジャッジ時間 4,272 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
15,232 KB
testcase_01 AC 117 ms
15,232 KB
testcase_02 AC 114 ms
15,232 KB
testcase_03 AC 115 ms
15,232 KB
testcase_04 AC 116 ms
15,232 KB
testcase_05 AC 116 ms
15,232 KB
testcase_06 AC 117 ms
15,488 KB
testcase_07 AC 115 ms
15,360 KB
testcase_08 AC 114 ms
15,232 KB
testcase_09 AC 279 ms
34,304 KB
testcase_10 AC 237 ms
33,024 KB
testcase_11 AC 235 ms
32,384 KB
testcase_12 AC 218 ms
27,392 KB
testcase_13 AC 220 ms
27,264 KB
testcase_14 AC 223 ms
27,264 KB
testcase_15 AC 221 ms
27,264 KB
testcase_16 AC 218 ms
27,520 KB
testcase_17 AC 243 ms
32,640 KB
testcase_18 AC 219 ms
27,520 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

# frozen_string_literal: true

C = 200_000 + 1

def solve
  c = Array.new(2 * C, [nil, nil])
  c[C] = [C-1, C-1]
  d = C
  S.each_with_index do |s, i|
    s ? (d += 1) : (d -= 1)
    if c[d][0].nil?
      c[d] = [C + i, C + i]
    else
      c[d][1] = C + i
    end
  end
  c.select { _1 && _2 }.map { (_1 - _2).abs }.max
end

S = gets.chomp.chars.map { _1 == 'A' }

puts solve
0