結果

問題 No.1380 Borderline
ユーザー yumechiyumechi
提出日時 2021-03-03 00:12:20
言語 Scala(Beta)
(3.4.0)
結果
RE  
実行時間 -
コード長 238 bytes
コンパイル時間 9,913 ms
コンパイル使用メモリ 265,544 KB
実行使用メモリ 66,576 KB
最終ジャッジ日時 2024-10-03 02:19:18
合計ジャッジ時間 58,487 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 984 ms
64,868 KB
testcase_01 AC 986 ms
64,376 KB
testcase_02 RE -
testcase_03 AC 974 ms
64,700 KB
testcase_04 AC 984 ms
64,736 KB
testcase_05 AC 966 ms
64,796 KB
testcase_06 AC 979 ms
64,952 KB
testcase_07 AC 983 ms
64,924 KB
testcase_08 RE -
testcase_09 AC 1,002 ms
64,752 KB
testcase_10 AC 997 ms
64,984 KB
testcase_11 AC 992 ms
65,036 KB
testcase_12 AC 987 ms
64,708 KB
testcase_13 AC 1,002 ms
66,324 KB
testcase_14 AC 1,018 ms
66,548 KB
testcase_15 AC 1,035 ms
66,412 KB
testcase_16 AC 1,035 ms
66,372 KB
testcase_17 AC 1,035 ms
66,500 KB
testcase_18 AC 1,025 ms
66,308 KB
testcase_19 RE -
testcase_20 AC 1,029 ms
66,316 KB
testcase_21 AC 1,028 ms
66,512 KB
testcase_22 AC 1,029 ms
66,280 KB
testcase_23 AC 1,021 ms
66,388 KB
testcase_24 AC 1,034 ms
66,444 KB
testcase_25 AC 1,035 ms
66,384 KB
testcase_26 AC 1,028 ms
66,448 KB
testcase_27 AC 1,022 ms
66,440 KB
testcase_28 AC 1,035 ms
66,340 KB
testcase_29 AC 1,032 ms
66,284 KB
testcase_30 AC 1,022 ms
66,276 KB
testcase_31 AC 1,015 ms
66,148 KB
testcase_32 AC 1,039 ms
66,308 KB
testcase_33 AC 1,021 ms
66,448 KB
testcase_34 AC 1,023 ms
66,524 KB
testcase_35 AC 1,017 ms
66,412 KB
testcase_36 AC 1,034 ms
66,488 KB
testcase_37 AC 1,023 ms
66,276 KB
testcase_38 AC 1,038 ms
66,400 KB
testcase_39 AC 1,032 ms
66,124 KB
testcase_40 AC 1,036 ms
66,540 KB
testcase_41 AC 1,041 ms
66,156 KB
testcase_42 AC 1,033 ms
66,540 KB
testcase_43 AC 1,023 ms
66,292 KB
testcase_44 AC 971 ms
66,136 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).max)
}
0