結果

問題 No.1471 Sort Queries
ユーザー simansiman
提出日時 2021-04-13 04:45:59
言語 Ruby
(3.3.0)
結果
AC  
実行時間 232 ms / 2,000 ms
コード長 480 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 15,360 KB
最終ジャッジ日時 2024-06-28 23:17:29
合計ジャッジ時間 8,089 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
12,032 KB
testcase_01 AC 88 ms
12,032 KB
testcase_02 AC 87 ms
12,032 KB
testcase_03 AC 89 ms
12,032 KB
testcase_04 AC 90 ms
12,032 KB
testcase_05 AC 89 ms
12,032 KB
testcase_06 AC 91 ms
12,032 KB
testcase_07 AC 90 ms
12,032 KB
testcase_08 AC 92 ms
11,904 KB
testcase_09 AC 89 ms
12,032 KB
testcase_10 AC 88 ms
11,904 KB
testcase_11 AC 88 ms
12,032 KB
testcase_12 AC 89 ms
12,032 KB
testcase_13 AC 132 ms
13,440 KB
testcase_14 AC 133 ms
13,184 KB
testcase_15 AC 147 ms
13,312 KB
testcase_16 AC 121 ms
12,416 KB
testcase_17 AC 127 ms
13,312 KB
testcase_18 AC 118 ms
13,312 KB
testcase_19 AC 124 ms
12,544 KB
testcase_20 AC 150 ms
13,440 KB
testcase_21 AC 129 ms
13,312 KB
testcase_22 AC 124 ms
13,184 KB
testcase_23 AC 179 ms
14,592 KB
testcase_24 AC 171 ms
14,336 KB
testcase_25 AC 200 ms
14,720 KB
testcase_26 AC 177 ms
13,696 KB
testcase_27 AC 192 ms
15,232 KB
testcase_28 AC 191 ms
14,976 KB
testcase_29 AC 174 ms
13,824 KB
testcase_30 AC 174 ms
14,592 KB
testcase_31 AC 209 ms
14,336 KB
testcase_32 AC 201 ms
13,696 KB
testcase_33 AC 227 ms
15,360 KB
testcase_34 AC 227 ms
14,976 KB
testcase_35 AC 232 ms
15,232 KB
testcase_36 AC 219 ms
15,104 KB
testcase_37 AC 220 ms
15,104 KB
testcase_38 AC 224 ms
15,104 KB
testcase_39 AC 227 ms
15,232 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N, Q = gets.split.map(&:to_i)
S = gets.chomp
counter = Array.new(N + 1) { Array.new(26, 0) }

N.times do |i|
  v = S[i].ord - 'a'.ord

  26.times do |j|
    counter[i + 1][j] = counter[i][j]
  end

  counter[i + 1][v] += 1
end

v = Array.new(26, 0)

Q.times do
  l, r, x = gets.split.map(&:to_i)

  26.times do |i|
    v[i] = counter[r][i] - counter[l - 1][i]
  end

  1.upto(25) do |i|
    v[i] += v[i - 1]
  end

  idx = v.bsearch_index { |c| c >= x }
  puts (idx + 97).chr
end
0