結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 279 ms
60,144 KB
testcase_01 AC 285 ms
60,256 KB
testcase_02 WA -
testcase_03 AC 551 ms
87,632 KB
testcase_04 AC 459 ms
87,788 KB
testcase_05 AC 661 ms
87,760 KB
testcase_06 AC 483 ms
87,748 KB
testcase_07 AC 447 ms
87,768 KB
testcase_08 AC 541 ms
87,752 KB
testcase_09 AC 367 ms
77,532 KB
testcase_10 AC 710 ms
87,880 KB
testcase_11 AC 435 ms
87,820 KB
testcase_12 AC 591 ms
87,880 KB
testcase_13 AC 654 ms
87,864 KB
testcase_14 AC 319 ms
60,316 KB
testcase_15 AC 318 ms
60,528 KB
testcase_16 AC 677 ms
87,876 KB
testcase_17 AC 774 ms
87,980 KB
testcase_18 AC 767 ms
87,956 KB
testcase_19 AC 838 ms
87,864 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 285 ms
60,316 KB
testcase_24 AC 320 ms
60,780 KB
testcase_25 AC 320 ms
62,896 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 494 ms
87,680 KB
testcase_30 AC 377 ms
83,504 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