結果

問題 No.1380 Borderline
ユーザー ch1channnch1channn
提出日時 2022-12-11 10:33:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 407 bytes
コンパイル時間 258 ms
コンパイル使用メモリ 82,008 KB
実行使用メモリ 53,792 KB
最終ジャッジ日時 2024-10-15 08:00:00
合計ジャッジ時間 3,357 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,644 KB
testcase_01 AC 39 ms
52,696 KB
testcase_02 AC 38 ms
52,832 KB
testcase_03 AC 39 ms
52,892 KB
testcase_04 AC 38 ms
53,792 KB
testcase_05 AC 39 ms
52,768 KB
testcase_06 AC 39 ms
52,608 KB
testcase_07 AC 39 ms
52,084 KB
testcase_08 AC 38 ms
52,828 KB
testcase_09 AC 37 ms
53,072 KB
testcase_10 AC 39 ms
52,092 KB
testcase_11 AC 39 ms
52,032 KB
testcase_12 AC 38 ms
52,836 KB
testcase_13 AC 38 ms
52,560 KB
testcase_14 AC 38 ms
52,080 KB
testcase_15 AC 37 ms
52,240 KB
testcase_16 AC 38 ms
52,532 KB
testcase_17 AC 38 ms
52,616 KB
testcase_18 AC 39 ms
53,200 KB
testcase_19 AC 38 ms
52,216 KB
testcase_20 AC 39 ms
52,736 KB
testcase_21 AC 38 ms
52,152 KB
testcase_22 AC 38 ms
52,200 KB
testcase_23 AC 39 ms
52,936 KB
testcase_24 AC 38 ms
52,572 KB
testcase_25 AC 39 ms
52,072 KB
testcase_26 AC 38 ms
52,652 KB
testcase_27 AC 39 ms
52,236 KB
testcase_28 AC 37 ms
52,688 KB
testcase_29 AC 38 ms
52,804 KB
testcase_30 AC 38 ms
52,740 KB
testcase_31 AC 38 ms
52,616 KB
testcase_32 AC 39 ms
52,156 KB
testcase_33 AC 38 ms
52,740 KB
testcase_34 AC 38 ms
53,004 KB
testcase_35 AC 38 ms
52,348 KB
testcase_36 AC 39 ms
52,288 KB
testcase_37 AC 38 ms
52,964 KB
testcase_38 AC 39 ms
52,672 KB
testcase_39 AC 39 ms
52,628 KB
testcase_40 AC 37 ms
52,556 KB
testcase_41 AC 40 ms
53,260 KB
testcase_42 AC 39 ms
53,140 KB
testcase_43 AC 39 ms
51,940 KB
testcase_44 AC 38 ms
52,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
if sys.platform =='ios':
	import clipboard
	a=clipboard.get()
	a = a.split('\n')
	text = '\n'.join(a)
	with open('input_file.txt','w') as f:
		f.write(text)
	sys.stdin = open('input_file.txt')
	
n,k = map(int,input().split())
P = sorted(list(map(int,input().split())))[::-1]

A = []
for i in range(n):
	A.append(P[i])
	if len(A) > k:
		while P[i] in A:
			A.remove(P[i])
		break
		
print(len(A))
0