結果

問題 No.5 数字のブロック
ユーザー バカらっくバカらっく
提出日時 2019-08-29 08:20:27
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 414 ms / 5,000 ms
コード長 446 bytes
コンパイル時間 13,736 ms
コンパイル使用メモリ 438,984 KB
実行使用メモリ 62,936 KB
最終ジャッジ日時 2024-11-20 19:28:39
合計ジャッジ時間 23,293 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 298 ms
60,384 KB
testcase_01 AC 317 ms
60,280 KB
testcase_02 AC 289 ms
56,952 KB
testcase_03 AC 391 ms
60,584 KB
testcase_04 AC 354 ms
60,592 KB
testcase_05 AC 394 ms
62,936 KB
testcase_06 AC 367 ms
60,524 KB
testcase_07 AC 367 ms
60,444 KB
testcase_08 AC 414 ms
60,716 KB
testcase_09 AC 359 ms
60,612 KB
testcase_10 AC 406 ms
60,828 KB
testcase_11 AC 365 ms
60,596 KB
testcase_12 AC 400 ms
60,432 KB
testcase_13 AC 412 ms
60,640 KB
testcase_14 AC 314 ms
60,312 KB
testcase_15 AC 329 ms
60,400 KB
testcase_16 AC 394 ms
62,720 KB
testcase_17 AC 410 ms
62,900 KB
testcase_18 AC 399 ms
62,888 KB
testcase_19 AC 402 ms
62,868 KB
testcase_20 AC 294 ms
60,260 KB
testcase_21 AC 300 ms
60,268 KB
testcase_22 AC 300 ms
60,280 KB
testcase_23 AC 310 ms
60,256 KB
testcase_24 AC 309 ms
60,472 KB
testcase_25 AC 315 ms
60,384 KB
testcase_26 AC 298 ms
60,384 KB
testcase_27 AC 298 ms
60,272 KB
testcase_28 AC 283 ms
56,956 KB
testcase_29 AC 344 ms
60,440 KB
testcase_30 AC 332 ms
60,568 KB
testcase_31 AC 289 ms
56,952 KB
testcase_32 AC 289 ms
56,888 KB
testcase_33 AC 279 ms
56,856 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>){
         ^

ソースコード

diff #

fun main(args: Array<String>){
    val boxWidth = readLine()!!.toInt()
    val blockCount = readLine()!!.toInt()
    val blockList = readLine()!!.split(" ").map { it.toInt() }.sorted()

    if(boxWidth >= blockList.sum()) {
        println(blockCount)
        return
    }

    var total = 0
    for(i in blockList.indices) {
        total += blockList[i]
        if(total > boxWidth) {
            println(i)
            break
        }
    }
}
0