結果

問題 No.2777 Wild Flush
ユーザー manoto43manoto43
提出日時 2024-06-07 22:25:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 438 bytes
コンパイル時間 251 ms
コンパイル使用メモリ 82,708 KB
実行使用メモリ 109,568 KB
最終ジャッジ日時 2024-06-07 22:25:29
合計ジャッジ時間 3,695 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,376 KB
testcase_01 AC 39 ms
53,632 KB
testcase_02 AC 40 ms
53,632 KB
testcase_03 AC 40 ms
53,504 KB
testcase_04 AC 39 ms
53,504 KB
testcase_05 AC 40 ms
53,504 KB
testcase_06 AC 43 ms
53,760 KB
testcase_07 AC 38 ms
53,504 KB
testcase_08 AC 39 ms
53,632 KB
testcase_09 AC 67 ms
80,128 KB
testcase_10 AC 67 ms
80,000 KB
testcase_11 AC 69 ms
80,512 KB
testcase_12 AC 109 ms
109,568 KB
testcase_13 AC 124 ms
103,040 KB
testcase_14 AC 129 ms
102,912 KB
testcase_15 AC 121 ms
103,040 KB
testcase_16 AC 54 ms
65,536 KB
testcase_17 AC 118 ms
103,040 KB
testcase_18 AC 87 ms
86,984 KB
testcase_19 AC 86 ms
86,656 KB
testcase_20 AC 62 ms
70,912 KB
testcase_21 AC 55 ms
67,328 KB
testcase_22 AC 90 ms
84,096 KB
testcase_23 AC 83 ms
83,968 KB
testcase_24 AC 95 ms
88,704 KB
testcase_25 AC 120 ms
103,040 KB
testcase_26 AC 115 ms
100,992 KB
testcase_27 AC 76 ms
79,360 KB
testcase_28 AC 56 ms
66,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter

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

    c = Counter(A)
    num = c[0]
    c = sorted(c.items(), key=lambda x: x[1], reverse=True)
    
    if len(c) >1:
        num += c[1][1] if c[0][0] == 0 else c[0][1]
    else:
        num = c[0][1]
    
    if num >= K:
        print("Yes")
    else:
        print("No")





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