結果

問題 No.5 数字のブロック
ユーザー FoltaFolta
提出日時 2019-05-27 10:19:02
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 460 ms / 5,000 ms
コード長 261 bytes
コンパイル時間 12,049 ms
コンパイル使用メモリ 427,292 KB
実行使用メモリ 64,792 KB
最終ジャッジ日時 2024-04-30 20:45:22
合計ジャッジ時間 26,462 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 336 ms
60,324 KB
testcase_01 AC 337 ms
60,392 KB
testcase_02 AC 329 ms
56,976 KB
testcase_03 AC 441 ms
62,688 KB
testcase_04 AC 405 ms
60,712 KB
testcase_05 AC 450 ms
62,724 KB
testcase_06 AC 421 ms
62,768 KB
testcase_07 AC 407 ms
62,824 KB
testcase_08 AC 457 ms
62,652 KB
testcase_09 AC 386 ms
60,728 KB
testcase_10 AC 451 ms
62,740 KB
testcase_11 AC 403 ms
62,688 KB
testcase_12 AC 450 ms
62,832 KB
testcase_13 AC 443 ms
62,656 KB
testcase_14 AC 343 ms
60,512 KB
testcase_15 AC 347 ms
60,628 KB
testcase_16 AC 448 ms
62,920 KB
testcase_17 AC 450 ms
62,660 KB
testcase_18 AC 454 ms
62,856 KB
testcase_19 AC 460 ms
64,792 KB
testcase_20 AC 334 ms
60,272 KB
testcase_21 AC 332 ms
60,328 KB
testcase_22 AC 329 ms
60,376 KB
testcase_23 AC 335 ms
60,388 KB
testcase_24 AC 342 ms
60,408 KB
testcase_25 AC 352 ms
60,396 KB
testcase_26 AC 334 ms
60,532 KB
testcase_27 AC 332 ms
60,300 KB
testcase_28 AC 323 ms
57,128 KB
testcase_29 AC 404 ms
60,536 KB
testcase_30 AC 382 ms
60,616 KB
testcase_31 AC 320 ms
56,884 KB
testcase_32 AC 324 ms
56,996 KB
testcase_33 AC 321 ms
56,876 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:3:9: warning: variable 'n' is never used
    val n = readLine()!!.toInt()
        ^

ソースコード

diff #

fun main(){
    var l = readLine()!!.toInt()
    val n = readLine()!!.toInt()
    val w = readLine()!!.split(" ").map(String::toInt).sortedBy{it}
    var cnt = 0
    for (i in w){
        if(l - i < 0) break
        cnt++
        l -= i
    }
    println(cnt)
}
0