結果

問題 No.935 う し た ぷ に き あ く ん 笑 ビ - ム
ユーザー TANIGUCHI KousukeTANIGUCHI Kousuke
提出日時 2019-12-05 19:18:07
言語 Ruby
(3.4.1)
結果
TLE  
実行時間 -
コード長 508 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 25,088 KB
最終ジャッジ日時 2024-12-21 15:08:52
合計ジャッジ時間 81,850 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 284 ms
17,536 KB
testcase_01 AC 1,012 ms
24,832 KB
testcase_02 AC 160 ms
17,664 KB
testcase_03 AC 1,121 ms
24,832 KB
testcase_04 AC 1,247 ms
17,536 KB
testcase_05 AC 218 ms
24,576 KB
testcase_06 AC 1,968 ms
17,664 KB
testcase_07 AC 1,795 ms
24,832 KB
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 AC 99 ms
17,280 KB
testcase_13 AC 103 ms
24,576 KB
testcase_14 AC 100 ms
17,408 KB
testcase_15 AC 99 ms
24,576 KB
testcase_16 AC 102 ms
17,408 KB
testcase_17 TLE -
testcase_18 AC 947 ms
17,664 KB
testcase_19 TLE -
testcase_20 AC 1,540 ms
17,664 KB
testcase_21 AC 335 ms
12,288 KB
testcase_22 AC 167 ms
12,416 KB
testcase_23 AC 106 ms
12,160 KB
testcase_24 AC 123 ms
12,160 KB
testcase_25 AC 125 ms
12,160 KB
testcase_26 AC 103 ms
12,032 KB
testcase_27 AC 110 ms
12,160 KB
testcase_28 AC 136 ms
12,160 KB
testcase_29 AC 150 ms
12,288 KB
testcase_30 AC 129 ms
12,288 KB
testcase_31 AC 135 ms
12,288 KB
testcase_32 AC 129 ms
12,288 KB
testcase_33 AC 1,726 ms
12,288 KB
testcase_34 TLE -
testcase_35 TLE -
testcase_36 AC 701 ms
12,160 KB
testcase_37 AC 1,729 ms
12,288 KB
testcase_38 AC 1,852 ms
12,160 KB
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 AC 1,308 ms
12,288 KB
testcase_45 TLE -
testcase_46 AC 485 ms
12,288 KB
testcase_47 AC 1,518 ms
12,288 KB
testcase_48 AC 1,134 ms
12,288 KB
testcase_49 AC 1,472 ms
12,160 KB
testcase_50 AC 1,614 ms
12,160 KB
testcase_51 AC 1,975 ms
12,416 KB
testcase_52 AC 1,922 ms
12,416 KB
testcase_53 TLE -
testcase_54 AC 722 ms
12,160 KB
testcase_55 AC 220 ms
12,288 KB
testcase_56 TLE -
testcase_57 AC 1,681 ms
12,160 KB
testcase_58 AC 106 ms
12,032 KB
testcase_59 AC 99 ms
24,576 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

def max(a,b); a > b ? a : b; end

N = gets.to_i
S = gets.chomp
A = gets.split.map(&:to_i)
Q = gets.to_i
K = gets.split.map(&:to_i)
E = Array.new(N + 1, 0).tap do |it|
  N.times do |i|
    it[i + 1] = it[i] + (S[i] == 'E' ? 1 : 0)
  end
end
H = Array.new(N + 1, 0).tap do |it|
  N.times do |i|
    it[i + 1] = it[i] + A[i]
  end
end

ANS = K.map do |k|
  e = 0
  (1 .. N).inject(0) do |l,r|
    (l .. r).find{|l_| H[r] - H[l_] <= k }.tap do |l_|
      e = max(e, E[r] - E[l_])
    end
  end
  e
end
puts ANS

0