結果
問題 | No.106 素数が嫌い!2 |
ユーザー | kutsutama |
提出日時 | 2019-01-08 12:08:03 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 463 bytes |
コンパイル時間 | 203 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 21,888 KB |
最終ジャッジ日時 | 2024-05-03 03:42:02 |
合計ジャッジ時間 | 17,337 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3,301 ms
21,888 KB |
testcase_01 | AC | 26 ms
10,880 KB |
testcase_02 | AC | 27 ms
10,752 KB |
testcase_03 | AC | 28 ms
10,752 KB |
testcase_04 | AC | 3,539 ms
21,760 KB |
testcase_05 | TLE | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
ソースコード
import math n, k = [int(x) for x in input().split()] prime = [] for num in range(2, n + 1): is_prime = True sq = math.sqrt(num) for p in prime: if num % p == 0: is_prime = False break if p > sq: break if is_prime: prime += [num] cnt = [0] * (n + 1) for p in prime: for i in range(p, n + 1, p): cnt[i] += 1 res = 0 for c in cnt: if c >= k: res += 1 print(res)