結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
13,824 KB
testcase_01 AC 41 ms
13,696 KB
testcase_02 AC 50 ms
13,696 KB
testcase_03 AC 47 ms
13,696 KB
testcase_04 AC 41 ms
13,696 KB
testcase_05 AC 42 ms
13,696 KB
testcase_06 RE -
testcase_07 AC 46 ms
13,696 KB
testcase_08 AC 42 ms
13,696 KB
testcase_09 AC 71 ms
15,308 KB
testcase_10 AC 71 ms
15,436 KB
testcase_11 WA -
testcase_12 AC 112 ms
29,744 KB
testcase_13 AC 104 ms
24,660 KB
testcase_14 AC 108 ms
24,624 KB
testcase_15 AC 106 ms
24,624 KB
testcase_16 AC 49 ms
14,464 KB
testcase_17 AC 113 ms
24,136 KB
testcase_18 AC 81 ms
20,276 KB
testcase_19 AC 82 ms
20,276 KB
testcase_20 AC 56 ms
16,264 KB
testcase_21 AC 50 ms
15,104 KB
testcase_22 AC 78 ms
19,800 KB
testcase_23 AC 79 ms
20,352 KB
testcase_24 AC 86 ms
23,272 KB
testcase_25 AC 104 ms
24,400 KB
testcase_26 AC 101 ms
24,008 KB
testcase_27 AC 69 ms
19,380 KB
testcase_28 AC 50 ms
14,760 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