結果

問題 No.2777 Wild Flush
ユーザー koukikawagoekoukikawagoe
提出日時 2024-06-07 22:56:35
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 250 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 131,072 KB
最終ジャッジ日時 2024-06-07 22:56:49
合計ジャッジ時間 6,699 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 149 ms
88,320 KB
testcase_01 WA -
testcase_02 AC 154 ms
88,704 KB
testcase_03 AC 149 ms
88,448 KB
testcase_04 WA -
testcase_05 AC 155 ms
88,576 KB
testcase_06 AC 151 ms
88,192 KB
testcase_07 AC 152 ms
88,320 KB
testcase_08 WA -
testcase_09 AC 170 ms
100,480 KB
testcase_10 AC 171 ms
100,992 KB
testcase_11 WA -
testcase_12 AC 207 ms
131,072 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 157 ms
88,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import statistics

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")
0