結果

問題 No.2777 Wild Flush
ユーザー ThetaTheta
提出日時 2024-07-10 17:26:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 116 ms / 2,000 ms
コード長 576 bytes
コンパイル時間 546 ms
コンパイル使用メモリ 82,660 KB
実行使用メモリ 98,560 KB
最終ジャッジ日時 2024-07-10 17:26:15
合計ジャッジ時間 4,088 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
53,376 KB
testcase_01 AC 45 ms
53,504 KB
testcase_02 AC 45 ms
53,504 KB
testcase_03 AC 44 ms
53,504 KB
testcase_04 AC 44 ms
53,888 KB
testcase_05 AC 46 ms
53,504 KB
testcase_06 AC 45 ms
53,504 KB
testcase_07 AC 44 ms
53,248 KB
testcase_08 AC 43 ms
53,760 KB
testcase_09 AC 58 ms
70,656 KB
testcase_10 AC 57 ms
70,528 KB
testcase_11 AC 57 ms
70,784 KB
testcase_12 AC 116 ms
98,560 KB
testcase_13 AC 87 ms
93,568 KB
testcase_14 AC 89 ms
93,952 KB
testcase_15 AC 88 ms
93,952 KB
testcase_16 AC 54 ms
64,128 KB
testcase_17 AC 88 ms
93,440 KB
testcase_18 AC 74 ms
82,944 KB
testcase_19 AC 74 ms
83,072 KB
testcase_20 AC 64 ms
69,376 KB
testcase_21 AC 56 ms
65,664 KB
testcase_22 AC 74 ms
80,512 KB
testcase_23 AC 72 ms
80,128 KB
testcase_24 AC 79 ms
83,968 KB
testcase_25 AC 86 ms
93,440 KB
testcase_26 AC 82 ms
90,368 KB
testcase_27 AC 67 ms
76,160 KB
testcase_28 AC 55 ms
65,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter


def main():
    N, K = map(int, input().split())
    A = []
    zero_ctr = 0
    for elm in map(int, input().split()):
        if elm == 0:
            zero_ctr += 1
        else:
            A.append(elm)
    ctr_A = Counter(A)
    if ctr_A:
        max_n = max(ctr_A.values())
    else:
        max_n = 0
    if max_n >= K:
        print("Yes")
        return
    if zero_ctr >= K:
        print("Yes")
        return
    if max_n + zero_ctr >= K:
        print("Yes")
        return
    print("No")


if __name__ == "__main__":
    main()
0