結果

問題 No.2777 Wild Flush
ユーザー koukikawagoekoukikawagoe
提出日時 2024-06-07 22:57:32
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 288 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 130,972 KB
最終ジャッジ日時 2024-06-07 22:57:41
合計ジャッジ時間 6,354 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
87,936 KB
testcase_01 AC 126 ms
88,064 KB
testcase_02 AC 148 ms
88,264 KB
testcase_03 AC 132 ms
88,192 KB
testcase_04 WA -
testcase_05 AC 128 ms
88,192 KB
testcase_06 AC 129 ms
88,052 KB
testcase_07 AC 132 ms
88,192 KB
testcase_08 AC 139 ms
88,308 KB
testcase_09 AC 147 ms
100,352 KB
testcase_10 AC 147 ms
100,744 KB
testcase_11 AC 153 ms
100,804 KB
testcase_12 AC 178 ms
130,972 KB
testcase_13 AC 184 ms
120,212 KB
testcase_14 AC 183 ms
120,372 KB
testcase_15 AC 184 ms
120,064 KB
testcase_16 AC 145 ms
88,832 KB
testcase_17 AC 200 ms
119,972 KB
testcase_18 AC 164 ms
107,392 KB
testcase_19 AC 158 ms
107,216 KB
testcase_20 AC 138 ms
92,928 KB
testcase_21 AC 135 ms
88,728 KB
testcase_22 AC 157 ms
104,880 KB
testcase_23 AC 156 ms
104,744 KB
testcase_24 AC 168 ms
109,568 KB
testcase_25 AC 190 ms
120,264 KB
testcase_26 AC 178 ms
116,352 KB
testcase_27 AC 153 ms
100,480 KB
testcase_28 AC 144 ms
88,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import statistics
import math

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

if A.count(statistics.mode(A)) >= K:
    print("Yes")
elif A.count(statistics.mode(A)) + 1 == K:
    if 0 in A :
        print("Yes")
    else:
        print("No")
else:
        print("No")
0