結果

問題 No.5 数字のブロック
ユーザー FoltaFolta
提出日時 2019-05-27 10:19:02
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 451 ms / 5,000 ms
コード長 261 bytes
コンパイル時間 11,397 ms
コンパイル使用メモリ 433,180 KB
実行使用メモリ 58,704 KB
最終ジャッジ日時 2024-11-20 18:35:42
合計ジャッジ時間 25,612 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 335 ms
55,260 KB
testcase_01 AC 334 ms
55,036 KB
testcase_02 AC 317 ms
51,620 KB
testcase_03 AC 438 ms
57,296 KB
testcase_04 AC 395 ms
55,968 KB
testcase_05 AC 447 ms
57,904 KB
testcase_06 AC 415 ms
56,944 KB
testcase_07 AC 403 ms
56,724 KB
testcase_08 AC 436 ms
57,008 KB
testcase_09 AC 381 ms
55,940 KB
testcase_10 AC 451 ms
57,844 KB
testcase_11 AC 397 ms
56,424 KB
testcase_12 AC 445 ms
57,444 KB
testcase_13 AC 440 ms
57,672 KB
testcase_14 AC 338 ms
55,236 KB
testcase_15 AC 341 ms
55,360 KB
testcase_16 AC 443 ms
57,940 KB
testcase_17 AC 445 ms
58,608 KB
testcase_18 AC 441 ms
58,152 KB
testcase_19 AC 450 ms
58,704 KB
testcase_20 AC 328 ms
55,144 KB
testcase_21 AC 335 ms
55,104 KB
testcase_22 AC 331 ms
55,040 KB
testcase_23 AC 328 ms
55,060 KB
testcase_24 AC 345 ms
55,396 KB
testcase_25 AC 350 ms
55,368 KB
testcase_26 AC 335 ms
55,024 KB
testcase_27 AC 335 ms
55,144 KB
testcase_28 AC 321 ms
51,888 KB
testcase_29 AC 395 ms
55,932 KB
testcase_30 AC 374 ms
56,104 KB
testcase_31 AC 316 ms
51,848 KB
testcase_32 AC 314 ms
51,936 KB
testcase_33 AC 319 ms
51,792 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