結果

問題 No.1046 Fruits Rush
ユーザー yumechiyumechi
提出日時 2021-02-18 02:57:23
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 1,013 ms / 2,000 ms
コード長 346 bytes
コンパイル時間 12,499 ms
コンパイル使用メモリ 250,656 KB
実行使用メモリ 64,672 KB
最終ジャッジ日時 2024-09-14 11:43:55
合計ジャッジ時間 30,821 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 972 ms
64,312 KB
testcase_01 AC 982 ms
64,368 KB
testcase_02 AC 972 ms
64,388 KB
testcase_03 AC 975 ms
64,320 KB
testcase_04 AC 977 ms
64,456 KB
testcase_05 AC 1,013 ms
64,384 KB
testcase_06 AC 967 ms
64,580 KB
testcase_07 AC 977 ms
64,384 KB
testcase_08 AC 962 ms
64,672 KB
testcase_09 AC 973 ms
64,372 KB
testcase_10 AC 978 ms
64,540 KB
testcase_11 AC 975 ms
64,568 KB
testcase_12 AC 1,009 ms
64,404 KB
testcase_13 AC 1,004 ms
64,296 KB
testcase_14 AC 989 ms
64,372 KB
testcase_15 AC 983 ms
64,328 KB
testcase_16 AC 982 ms
64,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner

object Main extends App {
  val sc = new Scanner(System.in)

  val n = sc.nextInt
  val k = sc.nextInt
  println(Array.fill(n)(sc.nextInt).sorted.reverse.splitAt(k)._1 match {
    case t @ Array(m, _*) => m + ((m > 0) match {
      case true => t.filter(_ > 0).sum - m
      case false => 0
    })
    case _ => 0
  })
}
0