結果

問題 No.5 数字のブロック
ユーザー 💕💖💞💕💖💞
提出日時 2017-04-08 15:46:50
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 466 ms / 5,000 ms
コード長 324 bytes
コンパイル時間 12,202 ms
コンパイル使用メモリ 429,852 KB
実行使用メモリ 58,696 KB
最終ジャッジ日時 2024-11-20 07:55:32
合計ジャッジ時間 26,373 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 335 ms
55,000 KB
testcase_01 AC 335 ms
54,964 KB
testcase_02 AC 321 ms
51,764 KB
testcase_03 AC 445 ms
57,292 KB
testcase_04 AC 404 ms
55,904 KB
testcase_05 AC 449 ms
57,988 KB
testcase_06 AC 424 ms
56,936 KB
testcase_07 AC 411 ms
56,740 KB
testcase_08 AC 442 ms
57,256 KB
testcase_09 AC 388 ms
56,076 KB
testcase_10 AC 463 ms
57,992 KB
testcase_11 AC 407 ms
56,524 KB
testcase_12 AC 451 ms
57,384 KB
testcase_13 AC 451 ms
57,884 KB
testcase_14 AC 348 ms
55,280 KB
testcase_15 AC 351 ms
55,060 KB
testcase_16 AC 460 ms
57,980 KB
testcase_17 AC 456 ms
58,448 KB
testcase_18 AC 453 ms
58,208 KB
testcase_19 AC 466 ms
58,696 KB
testcase_20 AC 336 ms
55,204 KB
testcase_21 AC 337 ms
55,020 KB
testcase_22 AC 333 ms
55,072 KB
testcase_23 AC 339 ms
54,944 KB
testcase_24 AC 359 ms
55,192 KB
testcase_25 AC 355 ms
55,332 KB
testcase_26 AC 340 ms
55,140 KB
testcase_27 AC 335 ms
55,052 KB
testcase_28 AC 323 ms
51,524 KB
testcase_29 AC 407 ms
55,664 KB
testcase_30 AC 378 ms
56,052 KB
testcase_31 AC 323 ms
51,784 KB
testcase_32 AC 321 ms
51,548 KB
testcase_33 AC 323 ms
51,808 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String> ) { 
         ^
Main.kt:3:7: warning: variable 'N' is never used
  val N = readLine()!!.toInt()
      ^

ソースコード

diff #

fun main(args: Array<String> ) { 
  val L = readLine()!!.toInt()
  val N = readLine()!!.toInt()
  var acc = 0 
  val ws = readLine()!!.split(" ").map { x ->
    x.toInt()
  }.sortedBy { x ->  
    x   
  }.filter { x ->
    acc += x
    if(acc <= L ) { 
      true 
    } else {
      false
    }   
  }
  println(ws.size)
}
0