結果

問題 No.5 数字のブロック
ユーザー karayuukarayuu
提出日時 2018-12-09 16:43:07
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 632 bytes
コンパイル時間 11,623 ms
コンパイル使用メモリ 442,444 KB
実行使用メモリ 63,000 KB
最終ジャッジ日時 2024-11-20 17:14:15
合計ジャッジ時間 27,193 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 361 ms
60,420 KB
testcase_02 WA -
testcase_03 AC 439 ms
60,808 KB
testcase_04 AC 396 ms
60,600 KB
testcase_05 AC 433 ms
62,880 KB
testcase_06 AC 414 ms
60,740 KB
testcase_07 AC 398 ms
60,588 KB
testcase_08 AC 435 ms
60,788 KB
testcase_09 AC 389 ms
60,608 KB
testcase_10 AC 443 ms
62,752 KB
testcase_11 AC 395 ms
60,596 KB
testcase_12 AC 440 ms
60,708 KB
testcase_13 AC 441 ms
62,876 KB
testcase_14 AC 338 ms
60,456 KB
testcase_15 AC 343 ms
60,480 KB
testcase_16 AC 443 ms
62,816 KB
testcase_17 AC 448 ms
63,000 KB
testcase_18 AC 460 ms
62,908 KB
testcase_19 AC 450 ms
62,900 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 333 ms
60,344 KB
testcase_24 AC 344 ms
60,464 KB
testcase_25 AC 348 ms
60,360 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 395 ms
60,516 KB
testcase_30 AC 372 ms
60,528 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:4:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^
Main.kt:5:13: warning: variable 'n' is never used
    val (l, n) = (0..1).map { readLine()!!.toInt() }
            ^

ソースコード

diff #

/**
 * Created by karayuu on 2018/12/09
 */
fun main(args: Array<String>) {
    val (l, n) = (0..1).map { readLine()!!.toInt() }
    val boxes = readLine()!!.split(" ").map { it.toInt() }.sorted()

    /*
     * 最大何個入りますか?なので、小さいほうから入れていったほうが多く入る。
     * 小さい順にソートして、小さいほうから入れていく。
     */

    var sum = 0
    for ((count, i) in boxes.withIndex()) {
        if (sum > l) {
            println(count - 1) //Listは0オリジンなので1引くのを忘れない
            return
        }
        sum += i
    }
}
0