結果
問題 | No.2334 Distinct Cards |
ユーザー | ああいい |
提出日時 | 2023-06-03 16:55:33 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 233 bytes |
コンパイル時間 | 442 ms |
コンパイル使用メモリ | 81,920 KB |
実行使用メモリ | 98,560 KB |
最終ジャッジ日時 | 2024-06-09 03:40:15 |
合計ジャッジ時間 | 2,593 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
51,456 KB |
testcase_01 | AC | 41 ms
51,712 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 84 ms
97,152 KB |
testcase_18 | AC | 89 ms
97,664 KB |
testcase_19 | AC | 85 ms
98,560 KB |
testcase_20 | AC | 70 ms
80,768 KB |
testcase_21 | AC | 69 ms
81,024 KB |
testcase_22 | AC | 70 ms
81,024 KB |
testcase_23 | AC | 40 ms
51,328 KB |
ソースコード
N,K = map(int,input().split()) a= list(map(int,input().split())) d = dict() for b in a: if b in d: d[b] += 1 else: d[b] = 1 l = sorted(d.values()) l = l[::-1] ans = 0 now = 0 while now < K: ans += 1 now += l.pop() print(ans)