結果

問題 No.1248 Kth Sum
ユーザー soratasorata
提出日時 2020-10-24 16:08:14
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 374 bytes
コンパイル時間 143 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 34,592 KB
最終ジャッジ日時 2024-07-21 15:18:38
合計ジャッジ時間 6,751 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
17,664 KB
testcase_01 AC 84 ms
12,032 KB
testcase_02 AC 83 ms
12,032 KB
testcase_03 AC 80 ms
12,032 KB
testcase_04 AC 80 ms
12,032 KB
testcase_05 AC 80 ms
12,288 KB
testcase_06 AC 80 ms
12,160 KB
testcase_07 AC 81 ms
11,904 KB
testcase_08 AC 80 ms
12,032 KB
testcase_09 AC 81 ms
12,160 KB
testcase_10 AC 84 ms
12,160 KB
testcase_11 AC 83 ms
11,904 KB
testcase_12 AC 85 ms
12,032 KB
testcase_13 AC 155 ms
27,392 KB
testcase_14 AC 452 ms
27,520 KB
testcase_15 AC 154 ms
27,392 KB
testcase_16 TLE -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:3: warning: assigned but unused variable - i
Syntax OK

ソースコード

diff #

#!ruby
n,k,*a=gets(p).split.map(&:to_i)
i=0
d=n/k
r=[0,a[k-1]]

m = a[k-1]
2.upto(d) do |c|
  r=[0,a[k-1]]
  k.upto(a.size-1) do |i|
    c.downto(2) do |b|
      next if i<k*b-1 || r[b-1].nil?
      v = r[b-1]+a[i]
      if r[b].nil? || r[b] > v then
        r[b] = v
      end
    end
    r[1] = [r[1],a[i]].min if i<=(k-1)*c
  end
  m = [m,r[c]].min if r[c]
end      
p m
0