結果

問題 No.1380 Borderline
ユーザー maninimanini
提出日時 2021-02-07 20:35:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 419 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,004 KB
実行使用メモリ 54,160 KB
最終ジャッジ日時 2024-07-05 17:00:43
合計ジャッジ時間 2,999 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,964 KB
testcase_01 AC 37 ms
52,272 KB
testcase_02 AC 37 ms
51,936 KB
testcase_03 AC 37 ms
53,072 KB
testcase_04 AC 36 ms
52,512 KB
testcase_05 AC 39 ms
52,444 KB
testcase_06 AC 37 ms
52,620 KB
testcase_07 AC 36 ms
52,696 KB
testcase_08 AC 36 ms
54,160 KB
testcase_09 AC 36 ms
52,216 KB
testcase_10 AC 37 ms
52,724 KB
testcase_11 AC 37 ms
52,960 KB
testcase_12 AC 37 ms
52,056 KB
testcase_13 AC 36 ms
52,556 KB
testcase_14 AC 36 ms
52,620 KB
testcase_15 AC 37 ms
51,876 KB
testcase_16 AC 36 ms
52,876 KB
testcase_17 AC 37 ms
53,036 KB
testcase_18 AC 37 ms
52,876 KB
testcase_19 AC 37 ms
53,568 KB
testcase_20 AC 36 ms
52,756 KB
testcase_21 AC 35 ms
53,256 KB
testcase_22 AC 36 ms
53,552 KB
testcase_23 AC 36 ms
52,220 KB
testcase_24 AC 37 ms
52,612 KB
testcase_25 AC 37 ms
52,864 KB
testcase_26 AC 36 ms
52,096 KB
testcase_27 AC 35 ms
52,364 KB
testcase_28 AC 37 ms
52,624 KB
testcase_29 AC 37 ms
53,224 KB
testcase_30 AC 37 ms
53,228 KB
testcase_31 AC 36 ms
52,816 KB
testcase_32 AC 36 ms
52,360 KB
testcase_33 AC 35 ms
52,668 KB
testcase_34 AC 36 ms
51,808 KB
testcase_35 AC 36 ms
52,464 KB
testcase_36 AC 36 ms
52,892 KB
testcase_37 AC 36 ms
52,228 KB
testcase_38 AC 36 ms
53,696 KB
testcase_39 AC 37 ms
51,940 KB
testcase_40 AC 36 ms
52,872 KB
testcase_41 AC 37 ms
52,344 KB
testcase_42 AC 37 ms
52,904 KB
testcase_43 AC 36 ms
52,424 KB
testcase_44 AC 36 ms
52,580 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding:UTF-8
import sys

MOD = 10 ** 9 + 7
INF = float('inf')

N, K = list(map(int, input().split()))     # スペース区切り連続数字
P = list(map(int, input().split()))     # スペース区切り連続数字

P.sort(reverse=True)
B = P[K-1]

c = 0
for i in range(N):
    if P[i] >= B:
        c += 1

if c > K:
    B += 1
    c = 0
    for i in range(N):
        if P[i] >= B:
            c += 1

print(c)

0