結果

問題 No.5 数字のブロック
ユーザー komkomhkomkomh
提出日時 2019-04-08 11:45:51
言語 Kotlin
(2.1.0)
結果
AC  
実行時間 411 ms / 5,000 ms
コード長 462 bytes
コンパイル時間 12,216 ms
コンパイル使用メモリ 430,608 KB
実行使用メモリ 56,464 KB
最終ジャッジ日時 2024-11-20 17:56:14
合計ジャッジ時間 22,456 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 307 ms
54,904 KB
testcase_01 AC 310 ms
55,200 KB
testcase_02 AC 293 ms
51,928 KB
testcase_03 AC 393 ms
55,828 KB
testcase_04 AC 354 ms
55,744 KB
testcase_05 AC 396 ms
56,288 KB
testcase_06 AC 386 ms
55,904 KB
testcase_07 AC 353 ms
55,696 KB
testcase_08 AC 411 ms
55,864 KB
testcase_09 AC 337 ms
55,564 KB
testcase_10 AC 393 ms
56,368 KB
testcase_11 AC 341 ms
55,928 KB
testcase_12 AC 378 ms
55,804 KB
testcase_13 AC 382 ms
55,936 KB
testcase_14 AC 306 ms
54,964 KB
testcase_15 AC 307 ms
55,376 KB
testcase_16 AC 392 ms
56,268 KB
testcase_17 AC 397 ms
56,464 KB
testcase_18 AC 395 ms
56,152 KB
testcase_19 AC 397 ms
56,296 KB
testcase_20 AC 293 ms
55,272 KB
testcase_21 AC 284 ms
54,832 KB
testcase_22 AC 291 ms
54,828 KB
testcase_23 AC 288 ms
55,272 KB
testcase_24 AC 313 ms
55,232 KB
testcase_25 AC 316 ms
54,996 KB
testcase_26 AC 290 ms
55,268 KB
testcase_27 AC 298 ms
55,120 KB
testcase_28 AC 288 ms
51,768 KB
testcase_29 AC 362 ms
55,848 KB
testcase_30 AC 337 ms
55,752 KB
testcase_31 AC 289 ms
51,732 KB
testcase_32 AC 280 ms
51,632 KB
testcase_33 AC 279 ms
51,624 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:5:9: warning: variable 'n' is never used
    val n = readLine()!!.toInt()
        ^

ソースコード

diff #

package yukicoder

fun main() {
    val l = readLine()!!.toInt()
    val n = readLine()!!.toInt()
    val w = readLine()!!.split(" ").map(String::toInt)

    fun getCount(): Int {
        var count = 0
        var sum = 0
        for (sotedW in w.sorted()) {
            sum += sotedW
            when (sum <= l) {
                true -> count++
                false -> return count
            }
        }
        return count
    }
    println(getCount())
}
0