結果
| 問題 |
No.2777 Wild Flush
|
| コンテスト | |
| ユーザー |
amentorimaru
|
| 提出日時 | 2024-06-07 01:24:36 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 92 ms / 2,000 ms |
| コード長 | 385 bytes |
| コンパイル時間 | 233 ms |
| コンパイル使用メモリ | 12,672 KB |
| 実行使用メモリ | 25,224 KB |
| 最終ジャッジ日時 | 2024-12-24 21:14:30 |
| 合計ジャッジ時間 | 3,572 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 5 |
| other | AC * 24 |
ソースコード
import sys
import collections
input = sys.stdin.readline
def read_values(): return tuple(map(int, input().split()))
def read_list(): return list(read_values())
def main():
n, k = read_values()
a = read_list()
c = collections.Counter(a)
# c0 = c[0]
c0 = c.get(0,0)
c[0] = 0
print('YNeos'[c0+max(c.values())<k::2])
if __name__ == "__main__":
main()
amentorimaru