結果

問題 No.5 数字のブロック
ユーザー minokasagominokasago
提出日時 2019-11-01 14:42:42
言語 Kotlin
(2.1.0)
結果
AC  
実行時間 442 ms / 5,000 ms
コード長 310 bytes
コンパイル時間 11,611 ms
コンパイル使用メモリ 435,096 KB
実行使用メモリ 56,200 KB
最終ジャッジ日時 2024-09-14 22:41:36
合計ジャッジ時間 25,724 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 322 ms
54,740 KB
testcase_01 AC 323 ms
54,744 KB
testcase_02 AC 319 ms
51,428 KB
testcase_03 AC 431 ms
55,900 KB
testcase_04 AC 387 ms
55,584 KB
testcase_05 AC 435 ms
55,852 KB
testcase_06 AC 405 ms
55,560 KB
testcase_07 AC 391 ms
55,572 KB
testcase_08 AC 418 ms
55,932 KB
testcase_09 AC 366 ms
55,224 KB
testcase_10 AC 433 ms
56,132 KB
testcase_11 AC 383 ms
55,592 KB
testcase_12 AC 431 ms
55,840 KB
testcase_13 AC 432 ms
56,004 KB
testcase_14 AC 331 ms
54,852 KB
testcase_15 AC 336 ms
55,152 KB
testcase_16 AC 432 ms
55,992 KB
testcase_17 AC 442 ms
56,200 KB
testcase_18 AC 437 ms
56,004 KB
testcase_19 AC 439 ms
56,112 KB
testcase_20 AC 328 ms
54,960 KB
testcase_21 AC 330 ms
54,832 KB
testcase_22 AC 326 ms
54,824 KB
testcase_23 AC 327 ms
54,736 KB
testcase_24 AC 338 ms
55,044 KB
testcase_25 AC 346 ms
54,932 KB
testcase_26 AC 330 ms
54,936 KB
testcase_27 AC 331 ms
55,028 KB
testcase_28 AC 318 ms
51,416 KB
testcase_29 AC 392 ms
55,628 KB
testcase_30 AC 370 ms
55,460 KB
testcase_31 AC 310 ms
51,736 KB
testcase_32 AC 315 ms
51,724 KB
testcase_33 AC 314 ms
51,496 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:6:9: warning: variable 'N' is never used
    val N = readLine()!!.toInt()
        ^

ソースコード

diff #

import kotlin.math.*

fun main()
{
    val L = readLine()!!.toInt()
    val N = readLine()!!.toInt()
    val W = readLine()!!.split(" ").map(String::toInt).sorted()
    var sum = 0
    var n = 0
    for (w in W) {
        if (sum + w > L)
            break
        sum += w
        n++
    }
    println(n)
}

0