結果

問題 No.5 数字のブロック
ユーザー karayuukarayuu
提出日時 2018-12-10 20:03:49
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 664 bytes
コンパイル時間 12,427 ms
コンパイル使用メモリ 442,856 KB
実行使用メモリ 84,384 KB
最終ジャッジ日時 2024-11-20 17:18:08
合計ジャッジ時間 30,087 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 327 ms
55,036 KB
testcase_01 AC 330 ms
55,072 KB
testcase_02 WA -
testcase_03 AC 644 ms
84,376 KB
testcase_04 AC 546 ms
83,832 KB
testcase_05 AC 765 ms
84,096 KB
testcase_06 AC 568 ms
83,948 KB
testcase_07 AC 514 ms
83,892 KB
testcase_08 AC 621 ms
84,188 KB
testcase_09 AC 429 ms
72,820 KB
testcase_10 AC 816 ms
84,072 KB
testcase_11 AC 505 ms
84,040 KB
testcase_12 AC 663 ms
84,016 KB
testcase_13 AC 758 ms
84,212 KB
testcase_14 AC 348 ms
55,112 KB
testcase_15 AC 368 ms
55,708 KB
testcase_16 AC 781 ms
84,288 KB
testcase_17 AC 897 ms
84,384 KB
testcase_18 AC 840 ms
84,272 KB
testcase_19 AC 947 ms
84,348 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 336 ms
55,064 KB
testcase_24 AC 385 ms
55,864 KB
testcase_25 AC 386 ms
56,792 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 545 ms
83,872 KB
testcase_30 AC 438 ms
78,788 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() }
            ^
Main.kt:12:9: warning: variable 'count' is never used
    var count = 0
        ^
Main.kt:13:9: warning: variable 'sum' is never used
    var sum = 0
        ^

ソースコード

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 count = 0
    var sum = 0

    (1..boxes.size).forEach {
        val sub = boxes.take(it)
        val sub_= boxes.take(it + 1)
        if (sub.sum() <= l) {
            if (sub_.sum() > l) {
                println(it)
            }
        }
    }
}
0