結果

問題 No.2777 Wild Flush
ユーザー いまり💣🍠いまり💣🍠
提出日時 2024-06-07 22:08:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 82 ms / 2,000 ms
コード長 355 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 82,152 KB
実行使用メモリ 89,856 KB
最終ジャッジ日時 2024-06-07 22:08:26
合計ジャッジ時間 2,811 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,456 KB
testcase_01 AC 36 ms
51,200 KB
testcase_02 AC 34 ms
51,712 KB
testcase_03 AC 35 ms
52,096 KB
testcase_04 AC 38 ms
51,584 KB
testcase_05 AC 39 ms
51,456 KB
testcase_06 AC 35 ms
51,584 KB
testcase_07 AC 34 ms
51,712 KB
testcase_08 AC 34 ms
51,328 KB
testcase_09 AC 53 ms
77,568 KB
testcase_10 AC 54 ms
76,928 KB
testcase_11 AC 53 ms
76,800 KB
testcase_12 AC 64 ms
88,192 KB
testcase_13 AC 82 ms
89,344 KB
testcase_14 AC 79 ms
89,856 KB
testcase_15 AC 80 ms
89,216 KB
testcase_16 AC 44 ms
62,464 KB
testcase_17 AC 80 ms
88,576 KB
testcase_18 AC 68 ms
78,848 KB
testcase_19 AC 68 ms
80,000 KB
testcase_20 AC 49 ms
67,200 KB
testcase_21 AC 47 ms
63,488 KB
testcase_22 AC 69 ms
78,080 KB
testcase_23 AC 64 ms
77,440 KB
testcase_24 AC 69 ms
80,384 KB
testcase_25 AC 81 ms
89,616 KB
testcase_26 AC 80 ms
85,760 KB
testcase_27 AC 65 ms
73,472 KB
testcase_28 AC 46 ms
64,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N ,K = map(int,input().split())
A = list(map(int, input().split()))
A.sort()

num_list = [0]
i = 0
j = 0
while j < N:
    if A[j] == i:
        num_list[i] += 1
        j += 1
    else:
        num_list.append(0)
        i += 1

max_num = max(num_list[1:]) if len(num_list) > 1 else 0

if max_num + num_list[0] >= K:
    print('Yes')
else:
    print('No')
0