結果
問題 | No.472 平均順位 |
ユーザー | ciel |
提出日時 | 2020-08-14 22:42:19 |
言語 | Crystal (1.11.2) |
結果 |
TLE
|
実行時間 | - |
コード長 | 361 bytes |
コンパイル時間 | 12,387 ms |
コンパイル使用メモリ | 297,844 KB |
実行使用メモリ | 202,728 KB |
最終ジャッジ日時 | 2024-06-30 21:04:45 |
合計ジャッジ時間 | 17,698 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,880 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 5 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 3 ms
6,944 KB |
testcase_07 | AC | 10 ms
6,940 KB |
testcase_08 | AC | 121 ms
11,508 KB |
testcase_09 | AC | 806 ms
83,560 KB |
testcase_10 | AC | 636 ms
77,800 KB |
testcase_11 | TLE | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
ソースコード
#!/usr/bin/env crystal def dfs( v : Array(Array(Int32)), d : Int32, r : Int32 ) : Int32 return 0_i32 if d==v.size Memo[d*20000+r]||=(0..[r,3].min).reduce(1_i32<<30){|s,i| [s,dfs(v,d+1,r-i)+v[d][i]].min } end Memo=Hash(Int32,Int32).new n,k=gets.not_nil!.split.map(&.to_i) v=(0...n).map{gets.not_nil!.split.map(&.to_i)+[1_i32]}.to_a p dfs(v,0,k) / n.to_f