結果

問題 No.1380 Borderline
ユーザー yumechiyumechi
提出日時 2021-03-03 00:16:40
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 1,101 ms / 2,000 ms
コード長 250 bytes
コンパイル時間 11,609 ms
コンパイル使用メモリ 259,152 KB
実行使用メモリ 65,260 KB
最終ジャッジ日時 2024-10-03 03:00:31
合計ジャッジ時間 57,645 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 997 ms
64,624 KB
testcase_01 AC 990 ms
64,828 KB
testcase_02 AC 1,004 ms
65,032 KB
testcase_03 AC 1,011 ms
65,004 KB
testcase_04 AC 1,012 ms
64,964 KB
testcase_05 AC 987 ms
64,660 KB
testcase_06 AC 997 ms
64,852 KB
testcase_07 AC 999 ms
64,956 KB
testcase_08 AC 998 ms
64,864 KB
testcase_09 AC 994 ms
64,988 KB
testcase_10 AC 1,006 ms
64,856 KB
testcase_11 AC 1,001 ms
64,804 KB
testcase_12 AC 1,006 ms
64,844 KB
testcase_13 AC 1,011 ms
65,012 KB
testcase_14 AC 1,049 ms
64,836 KB
testcase_15 AC 1,060 ms
64,824 KB
testcase_16 AC 1,029 ms
64,844 KB
testcase_17 AC 1,042 ms
65,160 KB
testcase_18 AC 1,030 ms
65,040 KB
testcase_19 AC 1,043 ms
65,152 KB
testcase_20 AC 1,028 ms
64,948 KB
testcase_21 AC 1,043 ms
64,780 KB
testcase_22 AC 1,027 ms
64,936 KB
testcase_23 AC 1,048 ms
65,080 KB
testcase_24 AC 1,041 ms
65,064 KB
testcase_25 AC 1,041 ms
65,108 KB
testcase_26 AC 1,054 ms
64,888 KB
testcase_27 AC 1,040 ms
65,068 KB
testcase_28 AC 1,101 ms
65,016 KB
testcase_29 AC 1,039 ms
65,064 KB
testcase_30 AC 1,039 ms
65,148 KB
testcase_31 AC 1,040 ms
65,168 KB
testcase_32 AC 1,046 ms
64,936 KB
testcase_33 AC 1,042 ms
65,152 KB
testcase_34 AC 1,036 ms
64,908 KB
testcase_35 AC 1,035 ms
65,260 KB
testcase_36 AC 1,041 ms
65,088 KB
testcase_37 AC 1,033 ms
65,072 KB
testcase_38 AC 1,035 ms
65,012 KB
testcase_39 AC 1,040 ms
64,896 KB
testcase_40 AC 1,037 ms
64,796 KB
testcase_41 AC 1,034 ms
65,012 KB
testcase_42 AC 1,045 ms
64,884 KB
testcase_43 AC 1,037 ms
64,896 KB
testcase_44 AC 981 ms
64,644 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)
  println((0 to pn.max).map(a => pn.count(_ >= a)).filter(_ <= k).appended(0).max)
}
0