結果
| 問題 |
No.106 素数が嫌い!2
|
| コンテスト | |
| ユーザー |
maspy
|
| 提出日時 | 2020-01-03 02:22:53 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
RE
(最新)
AC
(最初)
|
| 実行時間 | - |
| コード長 | 588 bytes |
| コンパイル時間 | 221 ms |
| コンパイル使用メモリ | 12,800 KB |
| 実行使用メモリ | 44,588 KB |
| 最終ジャッジ日時 | 2024-11-22 18:53:01 |
| 合計ジャッジ時間 | 9,544 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 3 |
| other | RE * 13 |
ソースコード
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines
import numpy as np
N,K = map(int,read().split())
def make_prime(U):
is_prime = np.zeros(U,np.bool)
is_prime[2] = 1
is_prime[3::2] = 1
M = int(U**.5)+1
for p in range(3,M,2):
if is_prime[p]:
is_prime[p*p::p+p] = 0
return is_prime, is_prime.nonzero()[0]
U = 2 * 10 ** 6 + 10
_,primes = make_prime(U)
cnt = np.zeros(U,np.int32)
for p in primes:
cnt[p::p] += 1
x = cnt[2:N+1]
answer = np.count_nonzero(x >= K)
print(answer)
maspy