結果

問題 No.5 数字のブロック
ユーザー 💕💖💞💕💖💞
提出日時 2017-07-01 14:53:39
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 256 bytes
コンパイル時間 13,475 ms
コンパイル使用メモリ 429,252 KB
実行使用メモリ 62,780 KB
最終ジャッジ日時 2024-11-20 11:09:53
合計ジャッジ時間 28,270 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 340 ms
60,180 KB
testcase_01 AC 345 ms
60,268 KB
testcase_02 WA -
testcase_03 AC 454 ms
60,352 KB
testcase_04 AC 404 ms
60,516 KB
testcase_05 AC 455 ms
62,628 KB
testcase_06 AC 422 ms
60,540 KB
testcase_07 AC 411 ms
60,428 KB
testcase_08 AC 443 ms
60,512 KB
testcase_09 AC 389 ms
60,548 KB
testcase_10 AC 457 ms
62,756 KB
testcase_11 AC 396 ms
60,368 KB
testcase_12 AC 449 ms
60,364 KB
testcase_13 AC 452 ms
60,456 KB
testcase_14 AC 347 ms
60,212 KB
testcase_15 AC 359 ms
60,172 KB
testcase_16 AC 455 ms
62,756 KB
testcase_17 AC 462 ms
62,612 KB
testcase_18 AC 455 ms
62,548 KB
testcase_19 AC 457 ms
62,780 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 352 ms
60,276 KB
testcase_24 AC 356 ms
60,036 KB
testcase_25 AC 361 ms
60,208 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 408 ms
60,396 KB
testcase_30 AC 384 ms
60,552 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:12: 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> ) {
  var l = readLine()!!.toInt()
  val n = readLine()!!.toInt()
  var cnt = 0
  for( s in readLine()!!.split(" ").map { it.toInt() }.sorted() ) {
    l   -= s
    cnt += 1
    if( l < 0 ) break    
  }
  println( cnt-1 )
}
0