結果

問題 No.5 数字のブロック
ユーザー da_louisda_louis
提出日時 2020-02-07 00:54:31
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 422 ms / 5,000 ms
コード長 352 bytes
コンパイル時間 10,679 ms
コンパイル使用メモリ 436,632 KB
実行使用メモリ 62,800 KB
最終ジャッジ日時 2024-09-25 07:08:04
合計ジャッジ時間 23,986 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 313 ms
60,396 KB
testcase_01 AC 313 ms
60,184 KB
testcase_02 AC 304 ms
56,892 KB
testcase_03 AC 413 ms
60,512 KB
testcase_04 AC 373 ms
60,380 KB
testcase_05 AC 418 ms
62,756 KB
testcase_06 AC 388 ms
60,368 KB
testcase_07 AC 374 ms
60,548 KB
testcase_08 AC 406 ms
60,484 KB
testcase_09 AC 358 ms
60,400 KB
testcase_10 AC 415 ms
60,384 KB
testcase_11 AC 369 ms
60,216 KB
testcase_12 AC 410 ms
60,732 KB
testcase_13 AC 415 ms
60,724 KB
testcase_14 AC 318 ms
60,104 KB
testcase_15 AC 322 ms
60,224 KB
testcase_16 AC 411 ms
62,800 KB
testcase_17 AC 422 ms
62,580 KB
testcase_18 AC 412 ms
62,560 KB
testcase_19 AC 415 ms
62,800 KB
testcase_20 AC 310 ms
60,224 KB
testcase_21 AC 310 ms
60,340 KB
testcase_22 AC 316 ms
60,256 KB
testcase_23 AC 309 ms
60,020 KB
testcase_24 AC 318 ms
60,364 KB
testcase_25 AC 326 ms
60,432 KB
testcase_26 AC 309 ms
60,184 KB
testcase_27 AC 309 ms
60,144 KB
testcase_28 AC 293 ms
56,924 KB
testcase_29 AC 364 ms
60,500 KB
testcase_30 AC 347 ms
60,416 KB
testcase_31 AC 302 ms
56,668 KB
testcase_32 AC 304 ms
56,892 KB
testcase_33 AC 300 ms
56,884 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^
Main.kt:7:9: warning: variable 'n' is never used
    val n = readLine()!!.toInt()
        ^

ソースコード

diff #

fun main(args: Array<String>) {
    p14()
}

fun p14() {
    val l = readLine()!!.toInt()
    val n = readLine()!!.toInt()
    val wList = readLine()!!.split(' ').map { it.toInt() }.sorted()

    var answer = 0
    var currL = 0L

    for (w in wList) {
        if (currL + w > l) break
        answer++
        currL += w
    }

    println(answer)
}
0