結果

問題 No.1380 Borderline
ユーザー TnaTna
提出日時 2022-07-13 14:17:17
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 404 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-06-24 17:27:16
合計ジャッジ時間 7,487 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
10,880 KB
testcase_01 AC 36 ms
10,880 KB
testcase_02 AC 35 ms
10,880 KB
testcase_03 AC 36 ms
11,008 KB
testcase_04 AC 37 ms
10,880 KB
testcase_05 AC 32 ms
10,880 KB
testcase_06 AC 32 ms
10,880 KB
testcase_07 AC 34 ms
10,880 KB
testcase_08 AC 39 ms
11,008 KB
testcase_09 AC 36 ms
10,880 KB
testcase_10 AC 38 ms
11,008 KB
testcase_11 AC 35 ms
10,880 KB
testcase_12 AC 33 ms
11,008 KB
testcase_13 AC 36 ms
10,880 KB
testcase_14 AC 176 ms
11,008 KB
testcase_15 AC 189 ms
10,880 KB
testcase_16 AC 177 ms
11,008 KB
testcase_17 AC 183 ms
11,008 KB
testcase_18 AC 175 ms
11,008 KB
testcase_19 AC 183 ms
11,008 KB
testcase_20 AC 177 ms
10,880 KB
testcase_21 AC 178 ms
10,880 KB
testcase_22 AC 175 ms
10,880 KB
testcase_23 AC 181 ms
10,880 KB
testcase_24 AC 179 ms
11,008 KB
testcase_25 AC 177 ms
11,008 KB
testcase_26 AC 173 ms
10,880 KB
testcase_27 AC 176 ms
10,880 KB
testcase_28 AC 174 ms
10,880 KB
testcase_29 AC 173 ms
10,880 KB
testcase_30 AC 180 ms
11,008 KB
testcase_31 AC 183 ms
10,880 KB
testcase_32 AC 179 ms
10,880 KB
testcase_33 AC 189 ms
10,880 KB
testcase_34 AC 172 ms
10,880 KB
testcase_35 AC 182 ms
10,880 KB
testcase_36 AC 184 ms
10,880 KB
testcase_37 AC 177 ms
10,880 KB
testcase_38 AC 175 ms
10,880 KB
testcase_39 AC 172 ms
10,880 KB
testcase_40 AC 177 ms
10,880 KB
testcase_41 AC 183 ms
10,880 KB
testcase_42 AC 176 ms
10,880 KB
testcase_43 AC 177 ms
11,008 KB
testcase_44 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = [int(x) for x in input().split()]
results = [int(x) for x in input().split()]

passer = []
for b in range(1, 10000):
    counter = 0
    for x in results:
        if x >= b:
            counter += 1
    passer.append(counter)

# print(passer)
passer = [x for x in passer if x <= K]
# print(passer)
if not passer:
    print(0)
# elif set(passer) == {0}:
#     print(K)
else:
    print(max(passer))
0