結果

問題 No.1380 Borderline
ユーザー MitarushiMitarushi
提出日時 2021-02-05 21:46:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 53 ms / 2,000 ms
コード長 201 bytes
コンパイル時間 226 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 61,440 KB
最終ジャッジ日時 2024-07-05 16:52:38
合計ジャッジ時間 3,734 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 41
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
p = [int(i) for i in input().split()]

ans = 0
for b in range(402):
    s = 0
    for i in p:
        s += (i >= b)
    if s <= k:
        ans = max(ans, s)
print(ans)
0