結果

問題 No.156 キャンディー・ボックス
ユーザー バカらっくバカらっく
提出日時 2019-09-05 03:36:28
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 290 ms / 2,000 ms
コード長 400 bytes
コンパイル時間 11,443 ms
コンパイル使用メモリ 435,224 KB
実行使用メモリ 55,312 KB
最終ジャッジ日時 2024-06-09 19:51:54
合計ジャッジ時間 22,753 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 278 ms
55,312 KB
testcase_01 AC 285 ms
55,036 KB
testcase_02 AC 279 ms
55,064 KB
testcase_03 AC 278 ms
55,292 KB
testcase_04 AC 272 ms
55,200 KB
testcase_05 AC 276 ms
55,108 KB
testcase_06 AC 276 ms
55,108 KB
testcase_07 AC 270 ms
55,132 KB
testcase_08 AC 276 ms
54,928 KB
testcase_09 AC 274 ms
54,888 KB
testcase_10 AC 275 ms
55,032 KB
testcase_11 AC 281 ms
55,236 KB
testcase_12 AC 276 ms
55,032 KB
testcase_13 AC 272 ms
54,964 KB
testcase_14 AC 279 ms
55,088 KB
testcase_15 AC 279 ms
54,984 KB
testcase_16 AC 278 ms
55,020 KB
testcase_17 AC 281 ms
55,016 KB
testcase_18 AC 279 ms
54,936 KB
testcase_19 AC 276 ms
54,984 KB
testcase_20 AC 288 ms
55,044 KB
testcase_21 AC 290 ms
54,812 KB
testcase_22 AC 278 ms
55,088 KB
testcase_23 AC 280 ms
54,924 KB
testcase_24 AC 266 ms
51,896 KB
testcase_25 AC 273 ms
51,916 KB
testcase_26 AC 278 ms
55,152 KB
testcase_27 AC 280 ms
54,956 KB
testcase_28 AC 282 ms
55,084 KB
testcase_29 AC 279 ms
55,044 KB
testcase_30 AC 276 ms
55,184 KB
testcase_31 AC 280 ms
55,120 KB
testcase_32 AC 278 ms
55,056 KB
testcase_33 AC 275 ms
55,088 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:2:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^
Main.kt:3:10: warning: variable 'n' is never used
    val (n, m) = readLine()!!.split(" ").map { it.toInt() }
         ^

ソースコード

diff #

fun main(args: Array<String>) {
    val (n, m) = readLine()!!.split(" ").map { it.toInt() }
    val list = readLine()!!.split(" ").map { it.toInt() }.sorted()
    var cnt = 0
    var subTotal = 0
    list.forEach {
        if(subTotal < m) {
            subTotal = subTotal + it
            cnt++
            if(subTotal > m) {
                cnt--
            }
        }
    }
    println(cnt)
}
0