結果

問題 No.1380 Borderline
ユーザー HAGI_TAROHAGI_TARO
提出日時 2021-09-23 08:51:43
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 227 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 59,264 KB
最終ジャッジ日時 2024-07-05 09:24:26
合計ジャッジ時間 3,391 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,584 KB
testcase_01 AC 41 ms
51,712 KB
testcase_02 AC 37 ms
51,328 KB
testcase_03 AC 38 ms
51,328 KB
testcase_04 WA -
testcase_05 AC 38 ms
51,712 KB
testcase_06 WA -
testcase_07 AC 39 ms
52,096 KB
testcase_08 AC 38 ms
51,584 KB
testcase_09 AC 37 ms
51,456 KB
testcase_10 AC 37 ms
51,712 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 44 ms
58,880 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 43 ms
58,240 KB
testcase_19 AC 40 ms
57,600 KB
testcase_20 WA -
testcase_21 AC 43 ms
58,240 KB
testcase_22 AC 43 ms
58,880 KB
testcase_23 WA -
testcase_24 AC 42 ms
58,368 KB
testcase_25 WA -
testcase_26 AC 42 ms
58,624 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 43 ms
58,368 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 43 ms
59,264 KB
testcase_36 WA -
testcase_37 AC 44 ms
59,008 KB
testcase_38 WA -
testcase_39 AC 43 ms
59,008 KB
testcase_40 AC 44 ms
58,624 KB
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 AC 39 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k = map(int,input().split())
P = list(map(int,input().split()))
ans = 0
for i in range(k+1):
    cnt = 0
    for j in range(n):
        if P[j] >= i:
            cnt += 1
    if cnt <= k:
        ans = max(ans,cnt)
print(ans)
0