結果

問題 No.1046 Fruits Rush
ユーザー yumechiyumechi
提出日時 2021-02-18 02:59:37
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 1,028 ms / 2,000 ms
コード長 291 bytes
コンパイル時間 11,835 ms
コンパイル使用メモリ 262,672 KB
実行使用メモリ 64,732 KB
最終ジャッジ日時 2024-09-14 11:46:46
合計ジャッジ時間 30,298 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 975 ms
64,640 KB
testcase_01 AC 979 ms
64,720 KB
testcase_02 AC 975 ms
64,608 KB
testcase_03 AC 994 ms
64,496 KB
testcase_04 AC 1,001 ms
64,420 KB
testcase_05 AC 998 ms
64,640 KB
testcase_06 AC 996 ms
64,612 KB
testcase_07 AC 1,028 ms
64,484 KB
testcase_08 AC 1,019 ms
64,612 KB
testcase_09 AC 993 ms
64,636 KB
testcase_10 AC 983 ms
64,488 KB
testcase_11 AC 984 ms
64,732 KB
testcase_12 AC 995 ms
64,728 KB
testcase_13 AC 993 ms
64,652 KB
testcase_14 AC 978 ms
64,468 KB
testcase_15 AC 977 ms
64,560 KB
testcase_16 AC 982 ms
64,512 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, _*) => if (m > 0) t.filter(_ > 0).sum else m
    case _ => 0
  })
}
0