結果
問題 | No.106 素数が嫌い!2 |
ユーザー | nbisco |
提出日時 | 2017-01-19 00:36:24 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 726 bytes |
コンパイル時間 | 89 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 99,864 KB |
最終ジャッジ日時 | 2024-06-02 06:58:15 |
合計ジャッジ時間 | 12,508 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 30 ms
10,880 KB |
testcase_02 | AC | 29 ms
10,880 KB |
testcase_03 | AC | 29 ms
10,880 KB |
testcase_04 | TLE | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
ソースコード
import math def count_primes(i, K): global primes global memo count = 0 for j in primes: if i < j: break if i % j == 0: count += 1 if count >= K: break while i % j == 0: i //= j if memo.get(i, False): return True return count >= K n = int(math.sqrt(2000000))+1 primes = [2] for i in range(3,n,2): for j in primes: if i % j == 0: break if j*2 > i: primes.append(i) break N, K = map(int, input().split(" ")) total = 0 memo = {} for i in range(2, N+1): if count_primes(i, K): total += 1 memo[i] = True print(total)