結果

問題 No.2777 Wild Flush
ユーザー Meso MesoMeso Meso
提出日時 2024-08-25 10:51:51
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 77 ms / 2,000 ms
コード長 198 bytes
コンパイル時間 306 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 20,844 KB
最終ジャッジ日時 2024-08-25 10:51:55
合計ジャッジ時間 3,640 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,624 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 26 ms
10,624 KB
testcase_03 AC 27 ms
10,496 KB
testcase_04 AC 29 ms
10,624 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 27 ms
10,624 KB
testcase_07 AC 27 ms
10,752 KB
testcase_08 AC 29 ms
10,624 KB
testcase_09 AC 66 ms
12,904 KB
testcase_10 AC 60 ms
13,036 KB
testcase_11 AC 59 ms
12,908 KB
testcase_12 AC 72 ms
20,844 KB
testcase_13 AC 71 ms
20,588 KB
testcase_14 AC 72 ms
20,592 KB
testcase_15 AC 74 ms
20,716 KB
testcase_16 AC 32 ms
11,648 KB
testcase_17 AC 71 ms
20,256 KB
testcase_18 AC 58 ms
16,984 KB
testcase_19 AC 61 ms
16,992 KB
testcase_20 AC 39 ms
13,420 KB
testcase_21 AC 35 ms
12,160 KB
testcase_22 AC 57 ms
16,708 KB
testcase_23 AC 54 ms
16,352 KB
testcase_24 AC 56 ms
17,292 KB
testcase_25 AC 71 ms
20,504 KB
testcase_26 AC 77 ms
19,072 KB
testcase_27 AC 48 ms
15,280 KB
testcase_28 AC 34 ms
12,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
A = list(map(int, input().split()))

num = [0] * (n+1)

for a in A:
    num[a] += 1

MAX = max(num[1:])

if MAX + num[0] >= k:
    print("Yes")
else:
    print("No")
0