結果

問題 No.2777 Wild Flush
ユーザー koukikawagoekoukikawagoe
提出日時 2024-06-07 23:08:30
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 276 bytes
コンパイル時間 132 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 29,776 KB
最終ジャッジ日時 2024-06-07 23:08:34
合計ジャッジ時間 3,575 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
13,824 KB
testcase_01 AC 47 ms
13,824 KB
testcase_02 AC 47 ms
13,696 KB
testcase_03 AC 48 ms
13,696 KB
testcase_04 AC 49 ms
13,696 KB
testcase_05 AC 52 ms
13,696 KB
testcase_06 RE -
testcase_07 AC 47 ms
13,824 KB
testcase_08 AC 46 ms
13,824 KB
testcase_09 AC 82 ms
15,440 KB
testcase_10 AC 80 ms
15,444 KB
testcase_11 WA -
testcase_12 AC 128 ms
29,776 KB
testcase_13 AC 116 ms
24,660 KB
testcase_14 AC 118 ms
24,652 KB
testcase_15 AC 116 ms
24,656 KB
testcase_16 AC 52 ms
14,464 KB
testcase_17 AC 114 ms
24,116 KB
testcase_18 AC 91 ms
20,252 KB
testcase_19 AC 94 ms
20,260 KB
testcase_20 AC 65 ms
16,392 KB
testcase_21 AC 58 ms
15,232 KB
testcase_22 AC 98 ms
19,672 KB
testcase_23 AC 89 ms
20,608 KB
testcase_24 AC 101 ms
23,292 KB
testcase_25 AC 112 ms
24,564 KB
testcase_26 AC 114 ms
23,984 KB
testcase_27 AC 85 ms
19,384 KB
testcase_28 AC 60 ms
14,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import statistics

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

t = A.count(0)
try:
    A.remove(0)
except:
     s = 0
if A.count(statistics.mode(A)) >= K:
    print("Yes")
elif A.count(statistics.mode(A)) + t >= K:
        print("Yes")
else:print("No")
0