結果

問題 No.5 数字のブロック
ユーザー uchida_tuchida_t
提出日時 2023-05-10 15:46:53
言語 Kotlin
(2.1.0)
結果
AC  
実行時間 409 ms / 5,000 ms
コード長 487 bytes
コンパイル時間 14,230 ms
コンパイル使用メモリ 431,496 KB
実行使用メモリ 56,500 KB
最終ジャッジ日時 2024-11-26 21:03:04
合計ジャッジ時間 27,345 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 293 ms
55,164 KB
testcase_01 AC 291 ms
54,872 KB
testcase_02 AC 282 ms
51,704 KB
testcase_03 AC 384 ms
55,924 KB
testcase_04 AC 356 ms
55,524 KB
testcase_05 AC 391 ms
56,260 KB
testcase_06 AC 370 ms
55,768 KB
testcase_07 AC 349 ms
55,712 KB
testcase_08 AC 383 ms
55,956 KB
testcase_09 AC 333 ms
55,420 KB
testcase_10 AC 398 ms
56,268 KB
testcase_11 AC 349 ms
55,576 KB
testcase_12 AC 390 ms
56,056 KB
testcase_13 AC 387 ms
55,888 KB
testcase_14 AC 300 ms
55,028 KB
testcase_15 AC 302 ms
54,960 KB
testcase_16 AC 386 ms
56,088 KB
testcase_17 AC 401 ms
56,324 KB
testcase_18 AC 406 ms
56,208 KB
testcase_19 AC 409 ms
56,500 KB
testcase_20 AC 305 ms
54,940 KB
testcase_21 AC 293 ms
55,004 KB
testcase_22 AC 295 ms
54,908 KB
testcase_23 AC 292 ms
54,836 KB
testcase_24 AC 303 ms
55,080 KB
testcase_25 AC 310 ms
55,060 KB
testcase_26 AC 299 ms
54,992 KB
testcase_27 AC 291 ms
54,940 KB
testcase_28 AC 279 ms
51,752 KB
testcase_29 AC 364 ms
55,552 KB
testcase_30 AC 332 ms
55,532 KB
testcase_31 AC 285 ms
51,652 KB
testcase_32 AC 282 ms
51,784 KB
testcase_33 AC 282 ms
51,604 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