結果

問題 No.5 数字のブロック
ユーザー karayuukarayuu
提出日時 2018-12-09 16:43:07
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 632 bytes
コンパイル時間 9,973 ms
コンパイル使用メモリ 442,648 KB
実行使用メモリ 62,956 KB
最終ジャッジ日時 2024-04-30 19:40:29
合計ジャッジ時間 22,344 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 290 ms
60,336 KB
testcase_02 WA -
testcase_03 AC 378 ms
60,812 KB
testcase_04 AC 339 ms
60,580 KB
testcase_05 AC 376 ms
62,908 KB
testcase_06 AC 369 ms
60,884 KB
testcase_07 AC 354 ms
60,436 KB
testcase_08 AC 366 ms
60,760 KB
testcase_09 AC 324 ms
60,752 KB
testcase_10 AC 375 ms
62,772 KB
testcase_11 AC 337 ms
60,576 KB
testcase_12 AC 383 ms
60,680 KB
testcase_13 AC 377 ms
62,880 KB
testcase_14 AC 294 ms
60,396 KB
testcase_15 AC 298 ms
60,352 KB
testcase_16 AC 379 ms
62,868 KB
testcase_17 AC 379 ms
62,828 KB
testcase_18 AC 387 ms
62,956 KB
testcase_19 AC 397 ms
62,792 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 287 ms
60,264 KB
testcase_24 AC 297 ms
60,460 KB
testcase_25 AC 316 ms
60,416 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 348 ms
60,472 KB
testcase_30 AC 354 ms
60,568 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