結果

問題 No.2777 Wild Flush
ユーザー anonymouslyanonymously
提出日時 2024-06-07 22:14:14
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 89 ms / 2,000 ms
コード長 229 bytes
コンパイル時間 95 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 20,652 KB
最終ジャッジ日時 2024-06-07 22:14:20
合計ジャッジ時間 2,550 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,624 KB
testcase_01 AC 25 ms
10,624 KB
testcase_02 AC 24 ms
10,624 KB
testcase_03 AC 23 ms
10,752 KB
testcase_04 AC 24 ms
10,752 KB
testcase_05 AC 23 ms
10,752 KB
testcase_06 AC 23 ms
10,752 KB
testcase_07 AC 24 ms
10,496 KB
testcase_08 AC 24 ms
10,624 KB
testcase_09 AC 63 ms
12,488 KB
testcase_10 AC 60 ms
12,616 KB
testcase_11 AC 78 ms
12,488 KB
testcase_12 AC 85 ms
20,396 KB
testcase_13 AC 83 ms
20,652 KB
testcase_14 AC 83 ms
20,648 KB
testcase_15 AC 85 ms
20,648 KB
testcase_16 AC 30 ms
11,648 KB
testcase_17 AC 81 ms
20,128 KB
testcase_18 AC 62 ms
17,112 KB
testcase_19 AC 89 ms
17,112 KB
testcase_20 AC 40 ms
12,928 KB
testcase_21 AC 33 ms
12,160 KB
testcase_22 AC 60 ms
17,008 KB
testcase_23 AC 58 ms
16,352 KB
testcase_24 AC 65 ms
17,164 KB
testcase_25 AC 84 ms
20,532 KB
testcase_26 AC 75 ms
18,948 KB
testcase_27 AC 51 ms
15,276 KB
testcase_28 AC 32 ms
11,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
A = [int(a) for a in input().split()]
B = [0 for i in range(N+1)]
for a in A:
    B[a] += 1
for i in range(1, N+1):
    if B[0]+B[i] >= K:
        print("Yes")
        break
else:
    print("No")
0