結果

問題 No.2777 Wild Flush
ユーザー detteiuudetteiuu
提出日時 2024-06-07 21:46:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 75 ms / 2,000 ms
コード長 416 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 81,664 KB
実行使用メモリ 96,000 KB
最終ジャッジ日時 2024-06-07 21:46:46
合計ジャッジ時間 2,689 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,584 KB
testcase_01 AC 35 ms
51,584 KB
testcase_02 AC 36 ms
52,352 KB
testcase_03 AC 33 ms
51,712 KB
testcase_04 AC 33 ms
51,712 KB
testcase_05 AC 34 ms
51,584 KB
testcase_06 AC 34 ms
51,456 KB
testcase_07 AC 34 ms
51,584 KB
testcase_08 AC 34 ms
51,712 KB
testcase_09 AC 53 ms
77,056 KB
testcase_10 AC 53 ms
77,440 KB
testcase_11 AC 53 ms
76,928 KB
testcase_12 AC 74 ms
96,000 KB
testcase_13 AC 71 ms
91,776 KB
testcase_14 AC 72 ms
92,672 KB
testcase_15 AC 70 ms
91,136 KB
testcase_16 AC 44 ms
62,848 KB
testcase_17 AC 74 ms
92,672 KB
testcase_18 AC 63 ms
81,664 KB
testcase_19 AC 62 ms
80,640 KB
testcase_20 AC 50 ms
67,712 KB
testcase_21 AC 46 ms
65,776 KB
testcase_22 AC 57 ms
78,464 KB
testcase_23 AC 60 ms
79,360 KB
testcase_24 AC 68 ms
82,432 KB
testcase_25 AC 75 ms
92,928 KB
testcase_26 AC 70 ms
88,832 KB
testcase_27 AC 56 ms
75,776 KB
testcase_28 AC 49 ms
65,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
A = list(map(int, input().split()))

zero = 0
D = dict()
for i in range(N):
    if A[i] != 0:
        if A[i] in D:
            D[A[i]] += 1
        else:
            D[A[i]] = 1
    else:
        zero += 1

if len(D) >= 1:
    if max(D.values())+zero >= K:
        print("Yes")
    else:
        print("No")
else:
    if zero >= K:
        print("Yes")
    else:
        print("No")
0