結果

問題 No.617 Nafmo、買い出しに行く
ユーザー 💕💖💞💕💖💞
提出日時 2018-02-17 09:18:15
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 311 bytes
コンパイル時間 11,982 ms
コンパイル使用メモリ 435,704 KB
実行使用メモリ 60,508 KB
最終ジャッジ日時 2024-11-20 13:54:00
合計ジャッジ時間 19,021 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 326 ms
60,248 KB
testcase_01 AC 329 ms
60,264 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 334 ms
60,328 KB
testcase_06 AC 335 ms
60,368 KB
testcase_07 AC 328 ms
60,144 KB
testcase_08 AC 318 ms
57,004 KB
testcase_09 AC 331 ms
60,140 KB
testcase_10 AC 332 ms
60,452 KB
testcase_11 AC 329 ms
60,232 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 329 ms
60,392 KB
testcase_16 AC 333 ms
60,452 KB
testcase_17 AC 331 ms
60,396 KB
testcase_18 AC 322 ms
56,984 KB
testcase_19 AC 322 ms
56,844 KB
testcase_20 AC 336 ms
60,440 KB
testcase_21 AC 335 ms
60,388 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args:Array<String>) {
         ^

ソースコード

diff #

fun main(args:Array<String>) {
  val (n, k) = readLine()!!.split(" ").map{ it.toInt() }
  val a = (1..n).map { 
    readLine()!!.toInt()
  }.sorted().reversed().toMutableList()

  var s = 0
  for(b in a) {
    if( s < k )  {
      if( b+s <= k ) 
        s = s + b
    }
    else 
      break
  }
  println(s)
}
0