結果

問題 No.2777 Wild Flush
ユーザー xrつぼxrつぼ
提出日時 2024-06-12 21:16:03
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 145 ms / 2,000 ms
コード長 451 bytes
コンパイル時間 343 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 20,536 KB
最終ジャッジ日時 2024-06-12 21:16:08
合計ジャッジ時間 4,071 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 26 ms
10,624 KB
testcase_02 AC 25 ms
10,624 KB
testcase_03 AC 26 ms
10,624 KB
testcase_04 AC 27 ms
10,624 KB
testcase_05 AC 27 ms
10,624 KB
testcase_06 AC 27 ms
10,624 KB
testcase_07 AC 28 ms
10,624 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 64 ms
12,376 KB
testcase_10 AC 64 ms
12,496 KB
testcase_11 AC 61 ms
12,636 KB
testcase_12 AC 113 ms
20,532 KB
testcase_13 AC 128 ms
20,480 KB
testcase_14 AC 128 ms
20,524 KB
testcase_15 AC 145 ms
20,400 KB
testcase_16 AC 35 ms
11,520 KB
testcase_17 AC 122 ms
20,260 KB
testcase_18 AC 92 ms
16,984 KB
testcase_19 AC 89 ms
16,988 KB
testcase_20 AC 50 ms
13,056 KB
testcase_21 AC 45 ms
12,160 KB
testcase_22 AC 86 ms
17,140 KB
testcase_23 AC 81 ms
16,356 KB
testcase_24 AC 94 ms
17,044 KB
testcase_25 AC 120 ms
20,536 KB
testcase_26 AC 113 ms
18,948 KB
testcase_27 AC 68 ms
15,148 KB
testcase_28 AC 45 ms
12,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

a.sort()
zero_count = 0
max_count = 0
now = 0
now_count = 0
for x in a:
    if x == 0: zero_count += 1
    else:
        if now != x:
            now = x
            max_count = max(max_count, now_count)
            now_count = 1
        elif now == x:
            now_count += 1
max_count = max(max_count, now_count)

if zero_count + max_count >= k: print("Yes")
else: print("No")
0