結果

問題 No.2777 Wild Flush
ユーザー N-noa21N-noa21
提出日時 2024-06-07 21:39:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 113 ms / 2,000 ms
コード長 363 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 82,068 KB
実行使用メモリ 109,292 KB
最終ジャッジ日時 2024-06-07 21:39:10
合計ジャッジ時間 3,126 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,912 KB
testcase_01 AC 38 ms
53,948 KB
testcase_02 AC 38 ms
54,032 KB
testcase_03 AC 39 ms
54,080 KB
testcase_04 AC 38 ms
54,064 KB
testcase_05 AC 37 ms
54,536 KB
testcase_06 AC 38 ms
54,184 KB
testcase_07 AC 38 ms
53,564 KB
testcase_08 AC 37 ms
55,544 KB
testcase_09 AC 63 ms
81,080 KB
testcase_10 AC 61 ms
81,840 KB
testcase_11 AC 57 ms
80,636 KB
testcase_12 AC 94 ms
109,292 KB
testcase_13 AC 112 ms
102,676 KB
testcase_14 AC 113 ms
102,644 KB
testcase_15 AC 109 ms
103,172 KB
testcase_16 AC 54 ms
65,940 KB
testcase_17 AC 108 ms
103,180 KB
testcase_18 AC 77 ms
87,896 KB
testcase_19 AC 76 ms
86,980 KB
testcase_20 AC 55 ms
72,068 KB
testcase_21 AC 51 ms
67,756 KB
testcase_22 AC 73 ms
85,120 KB
testcase_23 AC 75 ms
86,300 KB
testcase_24 AC 79 ms
89,088 KB
testcase_25 AC 109 ms
102,968 KB
testcase_26 AC 105 ms
101,072 KB
testcase_27 AC 67 ms
79,116 KB
testcase_28 AC 49 ms
67,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int, input().split())
A = list(map(int, input().split()))
from collections import Counter

c = Counter(A)
d = c.most_common()

#print(c)
if len(d) == 1:
    ans = d[0][1]
else:
    if d[0][0] == 0:
        #print("a")
        ans = d[0][1] + d[1][1]

    else:
        ans = d[0][1] + c[0]
#print(ans)
if ans >= K:
    print("Yes")
else:
    print("No")
0