結果

問題 No.842 初詣
ユーザー 14番14番
提出日時 2022-07-06 10:41:21
言語 Kotlin
(2.1.0)
結果
AC  
実行時間 354 ms / 2,000 ms
コード長 737 bytes
コンパイル時間 15,118 ms
コンパイル使用メモリ 437,736 KB
実行使用メモリ 55,404 KB
最終ジャッジ日時 2024-12-21 07:24:13
合計ジャッジ時間 21,987 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 344 ms
55,200 KB
testcase_01 AC 349 ms
55,200 KB
testcase_02 AC 336 ms
55,156 KB
testcase_03 AC 350 ms
55,248 KB
testcase_04 AC 354 ms
55,224 KB
testcase_05 AC 336 ms
55,020 KB
testcase_06 AC 334 ms
54,952 KB
testcase_07 AC 338 ms
55,224 KB
testcase_08 AC 331 ms
55,404 KB
testcase_09 AC 327 ms
55,360 KB
testcase_10 AC 331 ms
55,012 KB
testcase_11 AC 351 ms
55,352 KB
testcase_12 AC 348 ms
55,184 KB
testcase_13 AC 331 ms
55,080 KB
testcase_14 AC 330 ms
55,204 KB
testcase_15 AC 340 ms
55,284 KB
testcase_16 AC 349 ms
55,232 KB
testcase_17 AC 346 ms
55,196 KB
testcase_18 AC 329 ms
55,152 KB
testcase_19 AC 332 ms
55,308 KB
testcase_20 AC 352 ms
54,940 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