結果

問題 No.842 初詣
ユーザー 14番14番
提出日時 2022-07-06 10:41:21
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 348 ms / 2,000 ms
コード長 737 bytes
コンパイル時間 12,908 ms
コンパイル使用メモリ 431,940 KB
実行使用メモリ 60,536 KB
最終ジャッジ日時 2024-06-01 04:39:28
合計ジャッジ時間 21,320 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 333 ms
60,392 KB
testcase_01 AC 339 ms
60,328 KB
testcase_02 AC 334 ms
60,356 KB
testcase_03 AC 333 ms
60,372 KB
testcase_04 AC 334 ms
60,536 KB
testcase_05 AC 335 ms
60,336 KB
testcase_06 AC 345 ms
60,280 KB
testcase_07 AC 334 ms
60,388 KB
testcase_08 AC 344 ms
60,340 KB
testcase_09 AC 331 ms
60,400 KB
testcase_10 AC 330 ms
60,400 KB
testcase_11 AC 333 ms
60,348 KB
testcase_12 AC 340 ms
60,348 KB
testcase_13 AC 330 ms
60,304 KB
testcase_14 AC 348 ms
60,348 KB
testcase_15 AC 333 ms
60,464 KB
testcase_16 AC 333 ms
60,328 KB
testcase_17 AC 332 ms
60,392 KB
testcase_18 AC 335 ms
60,476 KB
testcase_19 AC 334 ms
60,520 KB
testcase_20 AC 330 ms
60,360 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

fun main(args: Array<String>) {
    val inpt = readLine()!!.split(" ").map { it.toInt() }
    var remain = inpt.last()
    val coins = inpt.dropLast(1).toIntArray()
    println(if(Solve(remain,coins).getAns()) "YES" else "NO")
}

class Solve(private val amount:Int, private val coins:IntArray) {
    private val coinType = listOf(500,100,50,10,5,1)
    fun getAns():Boolean {
        return getAns(0, amount)
    }
    private fun getAns(index:Int, remain:Int):Boolean {
        if(remain == 0) {
            return true
        }
        if(index > coins.lastIndex) {
            return false
        }
        val cnt = Math.min(remain/coinType[index], coins[index])
        return getAns(index+1, remain - cnt*coinType[index])
    }
}
0