結果

問題 No.672 最長AB列
ユーザー letrangerjpletrangerjp
提出日時 2018-04-14 00:06:45
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 349 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 33,536 KB
最終ジャッジ日時 2024-06-27 19:59:18
合計ジャッジ時間 4,708 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
12,160 KB
testcase_01 AC 88 ms
12,416 KB
testcase_02 AC 89 ms
12,160 KB
testcase_03 AC 89 ms
12,032 KB
testcase_04 AC 88 ms
12,032 KB
testcase_05 AC 84 ms
12,416 KB
testcase_06 AC 85 ms
12,416 KB
testcase_07 AC 83 ms
12,032 KB
testcase_08 AC 83 ms
12,288 KB
testcase_09 AC 319 ms
33,280 KB
testcase_10 AC 266 ms
33,280 KB
testcase_11 AC 264 ms
33,408 KB
testcase_12 AC 311 ms
33,408 KB
testcase_13 WA -
testcase_14 AC 267 ms
33,152 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 313 ms
33,408 KB
testcase_18 AC 274 ms
33,280 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

S = gets.chomp.chars
A = [sum = 0]+S.map{|c|sum += c == ?A ? 1 : 0}
B = [sum = 0]+S.map{|c|sum += c == ?B ? 1 : 0}

ans = 0
l = 0
r = 0
while r < A.size
  a = A[r] - A[l]
  b = B[r] - B[l]
  ra = A[-1] - A[r]
  rb = B[-1] - B[r]
  if rb < a - b || ra < b - a
    l += 1
  else
    r += 1
  end
  if a == b
    ans = a*2 if a*2 > ans
  end
end
p ans
0