結果

問題 No.615 集合に分けよう
ユーザー cielciel
提出日時 2017-12-15 10:42:04
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 173 bytes
コンパイル時間 36 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 21,120 KB
最終ジャッジ日時 2024-05-08 12:12:20
合計ジャッジ時間 5,688 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
17,664 KB
testcase_01 AC 78 ms
12,160 KB
testcase_02 AC 79 ms
12,032 KB
testcase_03 AC 80 ms
12,032 KB
testcase_04 AC 78 ms
12,288 KB
testcase_05 AC 79 ms
12,160 KB
testcase_06 AC 80 ms
12,160 KB
testcase_07 AC 80 ms
12,288 KB
testcase_08 AC 79 ms
12,160 KB
testcase_09 AC 80 ms
12,160 KB
testcase_10 AC 80 ms
12,160 KB
testcase_11 AC 108 ms
12,288 KB
testcase_12 AC 81 ms
12,160 KB
testcase_13 AC 828 ms
13,056 KB
testcase_14 TLE -
testcase_15 -- -
testcase_16 -- -
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 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:6: warning: assigned but unused variable - n
Syntax OK

ソースコード

diff #

$memo={}
def dfs(a,k,i)
  return a[-1]-a[i] if k==1
  $memo[[k,i]]||=(i..a.size-k).map{|j|a[j]-a[i]+dfs(a,k-1,j+1)}.min
end
n,k,*a=`dd`.split.map &:to_i
a.sort!
p dfs(a,k,0)
0