結果

問題 No.1380 Borderline
ユーザー zyxwzyxw
提出日時 2021-02-11 16:50:34
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 228 bytes
コンパイル時間 200 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 66,960 KB
最終ジャッジ日時 2024-07-18 05:26:33
合計ジャッジ時間 3,431 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,644 KB
testcase_01 AC 39 ms
52,484 KB
testcase_02 AC 39 ms
53,036 KB
testcase_03 AC 39 ms
53,260 KB
testcase_04 AC 38 ms
52,692 KB
testcase_05 RE -
testcase_06 AC 38 ms
52,768 KB
testcase_07 RE -
testcase_08 AC 38 ms
52,108 KB
testcase_09 RE -
testcase_10 RE -
testcase_11 AC 39 ms
52,608 KB
testcase_12 AC 38 ms
53,052 KB
testcase_13 AC 39 ms
53,352 KB
testcase_14 AC 39 ms
53,292 KB
testcase_15 AC 39 ms
52,212 KB
testcase_16 AC 38 ms
52,432 KB
testcase_17 AC 38 ms
52,572 KB
testcase_18 AC 38 ms
52,392 KB
testcase_19 AC 38 ms
52,564 KB
testcase_20 AC 39 ms
52,944 KB
testcase_21 AC 39 ms
52,808 KB
testcase_22 AC 39 ms
51,696 KB
testcase_23 AC 38 ms
52,080 KB
testcase_24 AC 39 ms
52,396 KB
testcase_25 AC 38 ms
53,284 KB
testcase_26 AC 39 ms
53,008 KB
testcase_27 AC 39 ms
52,944 KB
testcase_28 AC 39 ms
53,256 KB
testcase_29 AC 38 ms
53,792 KB
testcase_30 AC 38 ms
52,884 KB
testcase_31 AC 38 ms
53,164 KB
testcase_32 AC 38 ms
52,400 KB
testcase_33 AC 38 ms
52,152 KB
testcase_34 AC 39 ms
52,700 KB
testcase_35 AC 40 ms
53,344 KB
testcase_36 AC 38 ms
52,544 KB
testcase_37 AC 39 ms
52,348 KB
testcase_38 AC 39 ms
52,396 KB
testcase_39 AC 39 ms
52,204 KB
testcase_40 AC 39 ms
53,152 KB
testcase_41 AC 39 ms
53,132 KB
testcase_42 AC 38 ms
53,012 KB
testcase_43 AC 39 ms
53,376 KB
testcase_44 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,input().split())
p=list(map(int,input().split()))
p_set=sorted(list(set(p)))[::-1]
p_new={}
for i in p_set:
    p_new[i]=p.count(i)
num=0
i=0
while num+p_new[p_set[i]]<=K:
    num+=p_new[p_set[i]]
    i+=1
print(num)
0