結果

問題 No.472 平均順位
ユーザー htkbhtkb
提出日時 2018-06-05 10:39:25
言語 Kotlin
(1.9.23)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 550 bytes
コンパイル時間 12,286 ms
コンパイル使用メモリ 434,052 KB
実行使用メモリ 89,496 KB
最終ジャッジ日時 2024-11-20 16:08:37
合計ジャッジ時間 32,447 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 377 ms
54,900 KB
testcase_01 AC 372 ms
54,620 KB
testcase_02 AC 369 ms
54,984 KB
testcase_03 AC 371 ms
55,008 KB
testcase_04 AC 424 ms
56,180 KB
testcase_05 AC 380 ms
54,864 KB
testcase_06 AC 399 ms
55,416 KB
testcase_07 AC 424 ms
57,576 KB
testcase_08 AC 573 ms
84,596 KB
testcase_09 AC 637 ms
86,092 KB
testcase_10 AC 693 ms
86,612 KB
testcase_11 AC 890 ms
87,692 KB
testcase_12 AC 781 ms
86,208 KB
testcase_13 AC 1,413 ms
88,472 KB
testcase_14 TLE -
testcase_15 AC 1,424 ms
88,620 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 733 ms
86,244 KB
testcase_19 AC 1,071 ms
88,404 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:3:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^
Main.kt:11:109: warning: unnecessary non-null assertion (!!) on a non-null receiver of type Long
            dp[dest] = arrayOf(dp[dest]+q[i][0], dp[dest-1]+q[i][1], dp[dest-2]+q[i][2], dp[dest-3]+1).min()!!
                                                                                                            ^

ソースコード

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 = Array(P+4, { i -> if (i == 3) 0L else inf })
    for (i in 0 until N) {
        for (dest in Math.min(3*i+6, P+3) downTo 3) {
            dp[dest] = arrayOf(dp[dest]+q[i][0], dp[dest-1]+q[i][1], dp[dest-2]+q[i][2], dp[dest-3]+1).min()!!
        }
    }
    println(dp[P+3].toDouble() / N.toDouble())
}
0