結果

問題 No.472 平均順位
ユーザー htkbhtkb
提出日時 2018-06-05 17:55:46
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 747 ms / 2,000 ms
コード長 564 bytes
コンパイル時間 13,155 ms
コンパイル使用メモリ 438,192 KB
実行使用メモリ 75,292 KB
最終ジャッジ日時 2024-11-20 16:10:14
合計ジャッジ時間 21,568 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 340 ms
60,836 KB
testcase_01 AC 341 ms
60,952 KB
testcase_02 AC 324 ms
60,832 KB
testcase_03 AC 342 ms
60,868 KB
testcase_04 AC 369 ms
61,080 KB
testcase_05 AC 345 ms
61,000 KB
testcase_06 AC 360 ms
61,004 KB
testcase_07 AC 357 ms
58,972 KB
testcase_08 AC 478 ms
62,320 KB
testcase_09 AC 472 ms
64,616 KB
testcase_10 AC 525 ms
64,288 KB
testcase_11 AC 542 ms
66,936 KB
testcase_12 AC 536 ms
65,732 KB
testcase_13 AC 614 ms
75,104 KB
testcase_14 AC 747 ms
73,792 KB
testcase_15 AC 652 ms
75,292 KB
testcase_16 AC 729 ms
75,096 KB
testcase_17 AC 695 ms
74,980 KB
testcase_18 AC 505 ms
64,664 KB
testcase_19 AC 604 ms
72,712 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() )})
    val inf = 100000L*N
    val dp = LongArray(P+4)
    dp.fill(inf)
    dp[3] = 0
    for (i in 0 until N) {
        for (dest in Math.min(3*i+6, P+3) downTo 3) {
            dp[dest] = Math.min(Math.min(Math.min(dp[dest]+q[i][0], dp[dest-1]+q[i][1]), dp[dest-2]+q[i][2]), dp[dest-3]+1)
        }
    }
    println(dp[P+3].toDouble() / N.toDouble())
}
0