結果

問題 No.472 平均順位
ユーザー htkbhtkb
提出日時 2018-06-05 09:37:34
言語 Kotlin
(1.9.23)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 612 bytes
コンパイル時間 11,651 ms
コンパイル使用メモリ 437,660 KB
実行使用メモリ 95,444 KB
最終ジャッジ日時 2024-11-20 16:06:23
合計ジャッジ時間 31,075 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 342 ms
55,324 KB
testcase_01 AC 338 ms
55,424 KB
testcase_02 AC 337 ms
55,364 KB
testcase_03 AC 337 ms
55,236 KB
testcase_04 AC 376 ms
57,640 KB
testcase_05 AC 341 ms
55,252 KB
testcase_06 AC 360 ms
57,492 KB
testcase_07 AC 386 ms
57,576 KB
testcase_08 AC 515 ms
85,860 KB
testcase_09 AC 580 ms
87,848 KB
testcase_10 AC 622 ms
88,048 KB
testcase_11 AC 791 ms
87,948 KB
testcase_12 AC 724 ms
87,676 KB
testcase_13 AC 1,384 ms
90,112 KB
testcase_14 TLE -
testcase_15 AC 1,360 ms
90,140 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 631 ms
87,844 KB
testcase_19 AC 1,010 ms
88,184 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:3:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

import java.util.*

fun main(args: Array<String>) {
    val sc = Scanner(System.`in`)
    val (N, P) = Pair(sc.nextInt(), sc.nextInt())
    val q = Array(N, { arrayOf(sc.nextInt(), sc.nextInt(), sc.nextInt(), 1 )})
    var dp = Array(P+4, { 0L })
    val inf = 100000L*N
    val filled_dp = Array(P+1, { inf })
    for (i in 0 until N) {
        val _dp = filled_dp.clone()
        for (j in 0 until 4) {
            for (k in Math.min(3*i, P-j) downTo 0) {
                _dp[k+j] = Math.min(_dp[k+j], dp[k]+q[i][j])
            }
        }
        dp = _dp
    }
    println(dp[P].toDouble() / N.toDouble())
}
0