結果

問題 No.1380 Borderline
ユーザー yumechiyumechi
提出日時 2021-03-03 00:15:24
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 1,015 ms / 2,000 ms
コード長 272 bytes
コンパイル時間 10,687 ms
コンパイル使用メモリ 259,772 KB
実行使用メモリ 66,700 KB
最終ジャッジ日時 2024-10-03 02:59:24
合計ジャッジ時間 56,430 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 945 ms
66,236 KB
testcase_01 AC 955 ms
66,204 KB
testcase_02 AC 957 ms
66,348 KB
testcase_03 AC 957 ms
66,060 KB
testcase_04 AC 967 ms
66,388 KB
testcase_05 AC 950 ms
66,248 KB
testcase_06 AC 967 ms
66,168 KB
testcase_07 AC 994 ms
66,412 KB
testcase_08 AC 972 ms
66,404 KB
testcase_09 AC 997 ms
66,564 KB
testcase_10 AC 955 ms
66,596 KB
testcase_11 AC 966 ms
66,588 KB
testcase_12 AC 966 ms
66,160 KB
testcase_13 AC 979 ms
66,012 KB
testcase_14 AC 1,007 ms
66,268 KB
testcase_15 AC 1,013 ms
66,384 KB
testcase_16 AC 995 ms
66,348 KB
testcase_17 AC 1,002 ms
66,400 KB
testcase_18 AC 1,000 ms
66,504 KB
testcase_19 AC 989 ms
66,400 KB
testcase_20 AC 1,004 ms
66,456 KB
testcase_21 AC 986 ms
66,428 KB
testcase_22 AC 980 ms
66,384 KB
testcase_23 AC 981 ms
66,264 KB
testcase_24 AC 1,003 ms
66,580 KB
testcase_25 AC 987 ms
66,436 KB
testcase_26 AC 1,007 ms
66,568 KB
testcase_27 AC 991 ms
66,096 KB
testcase_28 AC 1,015 ms
66,620 KB
testcase_29 AC 976 ms
66,388 KB
testcase_30 AC 964 ms
66,528 KB
testcase_31 AC 978 ms
66,592 KB
testcase_32 AC 989 ms
66,324 KB
testcase_33 AC 982 ms
66,324 KB
testcase_34 AC 997 ms
66,556 KB
testcase_35 AC 984 ms
66,700 KB
testcase_36 AC 981 ms
66,380 KB
testcase_37 AC 969 ms
66,612 KB
testcase_38 AC 982 ms
66,436 KB
testcase_39 AC 1,007 ms
66,556 KB
testcase_40 AC 973 ms
66,544 KB
testcase_41 AC 972 ms
66,372 KB
testcase_42 AC 978 ms
66,376 KB
testcase_43 AC 984 ms
66,608 KB
testcase_44 AC 924 ms
66,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner

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

  val n = sc.nextInt
  val k = sc.nextInt
  val pn = Array.fill(n)(sc.nextInt)
  val t = (0 to pn.max).map(a => pn.count(_ >= a)).filter(_ <= k)
  println(if (t.isEmpty) 0 else t.max)
}
0