結果

問題 No.5 数字のブロック
ユーザー uchida_tuchida_t
提出日時 2023-05-10 15:46:53
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 393 ms / 5,000 ms
コード長 487 bytes
コンパイル時間 11,393 ms
コンパイル使用メモリ 432,052 KB
実行使用メモリ 56,616 KB
最終ジャッジ日時 2024-05-05 03:39:17
合計ジャッジ時間 24,023 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 292 ms
55,092 KB
testcase_01 AC 288 ms
55,180 KB
testcase_02 AC 284 ms
51,724 KB
testcase_03 AC 368 ms
56,060 KB
testcase_04 AC 338 ms
55,868 KB
testcase_05 AC 379 ms
56,372 KB
testcase_06 AC 353 ms
55,976 KB
testcase_07 AC 337 ms
55,852 KB
testcase_08 AC 368 ms
55,972 KB
testcase_09 AC 316 ms
55,588 KB
testcase_10 AC 381 ms
56,452 KB
testcase_11 AC 333 ms
55,748 KB
testcase_12 AC 385 ms
56,080 KB
testcase_13 AC 378 ms
56,136 KB
testcase_14 AC 289 ms
55,164 KB
testcase_15 AC 291 ms
55,032 KB
testcase_16 AC 380 ms
56,144 KB
testcase_17 AC 381 ms
56,516 KB
testcase_18 AC 393 ms
56,332 KB
testcase_19 AC 383 ms
56,616 KB
testcase_20 AC 283 ms
55,060 KB
testcase_21 AC 287 ms
55,092 KB
testcase_22 AC 301 ms
55,088 KB
testcase_23 AC 295 ms
54,984 KB
testcase_24 AC 292 ms
55,016 KB
testcase_25 AC 304 ms
55,288 KB
testcase_26 AC 291 ms
55,092 KB
testcase_27 AC 282 ms
55,100 KB
testcase_28 AC 274 ms
51,844 KB
testcase_29 AC 330 ms
55,692 KB
testcase_30 AC 326 ms
55,552 KB
testcase_31 AC 297 ms
51,668 KB
testcase_32 AC 275 ms
51,868 KB
testcase_33 AC 275 ms
51,844 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

fun main(args: Array<String>) {
    var bigBox = readLine()!!.toInt()
    var numOfSmallBox = readLine()!!.toInt()
    var smallBoxes = readLine()!!.split(" ").map { it.toInt() }
    val sorted = smallBoxes.sorted()
    var boxList = mutableListOf<Int>()
    var total = 0
    
    for (i in 0 until numOfSmallBox) {
        total += sorted[i]
        if (total > bigBox) {
            break
        } else {
            boxList.add(sorted[i])
        }
    }
    println(boxList.size)
}
0