結果

問題 No.2777 Wild Flush
ユーザー 👑 amentorimaruamentorimaru
提出日時 2024-05-26 15:08:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 87 ms / 2,000 ms
コード長 363 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 101,496 KB
最終ジャッジ日時 2024-06-06 22:54:53
合計ジャッジ時間 3,091 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
53,248 KB
testcase_01 AC 43 ms
53,888 KB
testcase_02 AC 43 ms
53,732 KB
testcase_03 AC 41 ms
53,376 KB
testcase_04 AC 41 ms
53,376 KB
testcase_05 AC 42 ms
53,888 KB
testcase_06 AC 43 ms
53,120 KB
testcase_07 AC 41 ms
53,232 KB
testcase_08 AC 41 ms
53,504 KB
testcase_09 AC 66 ms
83,968 KB
testcase_10 AC 67 ms
83,968 KB
testcase_11 AC 67 ms
83,840 KB
testcase_12 AC 84 ms
101,496 KB
testcase_13 AC 87 ms
97,048 KB
testcase_14 AC 84 ms
97,536 KB
testcase_15 AC 86 ms
97,024 KB
testcase_16 AC 50 ms
64,408 KB
testcase_17 AC 84 ms
96,512 KB
testcase_18 AC 71 ms
84,680 KB
testcase_19 AC 71 ms
85,248 KB
testcase_20 AC 56 ms
70,092 KB
testcase_21 AC 50 ms
66,048 KB
testcase_22 AC 69 ms
82,176 KB
testcase_23 AC 69 ms
82,432 KB
testcase_24 AC 74 ms
86,144 KB
testcase_25 AC 85 ms
96,768 KB
testcase_26 AC 83 ms
92,804 KB
testcase_27 AC 68 ms
77,824 KB
testcase_28 AC 55 ms
65,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import collections
input = sys.stdin.readline
def read_values(): return tuple(map(int, input().split()))
def read_list(): return list(read_values())

def main():
    n, k = read_values()
    a = read_list()
    c = collections.Counter(a)
    c0 = c[0]
    c[0] = 0
    print('YNeos'[c0+max(c.values())<k::2])
    
if __name__ == "__main__":
    main()
0