結果

問題 No.106 素数が嫌い!2
ユーザー tonnnura172tonnnura172
提出日時 2020-05-07 11:12:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 3,005 ms / 5,000 ms
コード長 1,097 bytes
コンパイル時間 252 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 48,480 KB
最終ジャッジ日時 2024-07-03 09:22:44
合計ジャッジ時間 21,549 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,365 ms
29,920 KB
testcase_01 AC 35 ms
11,264 KB
testcase_02 AC 35 ms
11,264 KB
testcase_03 AC 35 ms
11,264 KB
testcase_04 AC 1,384 ms
30,104 KB
testcase_05 AC 3,005 ms
48,480 KB
testcase_06 AC 2,765 ms
48,240 KB
testcase_07 AC 2,756 ms
48,412 KB
testcase_08 AC 192 ms
13,824 KB
testcase_09 AC 197 ms
13,952 KB
testcase_10 AC 2,804 ms
48,420 KB
testcase_11 AC 1,213 ms
27,972 KB
testcase_12 AC 2,716 ms
47,064 KB
testcase_13 AC 34 ms
11,264 KB
testcase_14 AC 34 ms
11,264 KB
testcase_15 AC 35 ms
11,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, re
from collections import deque, defaultdict, Counter
from math import ceil, sqrt, hypot, factorial, pi, sin, cos, radians, gcd, log
from itertools import accumulate, permutations, combinations, product
from operator import itemgetter, mul, add
from copy import deepcopy
from string import ascii_lowercase, ascii_uppercase, digits
from bisect import bisect, bisect_left
from heapq import heappush, heappop
from functools import reduce, lru_cache
def input(): return sys.stdin.readline().strip()
def INT(): return int(input())
def MAP(): return map(int, input().split())
def LIST(): return list(map(int, input().split()))
def ZIP(n): return zip(*(MAP() for _ in range(n)))
sys.setrecursionlimit(10 ** 9)
INF = float('inf')
mod = 10 ** 9 + 7

N, K = MAP()

def sieve(n):
	s = [True] * n
	for x in range(2, int(n ** 0.5) + 1):
		if s[x]:
			for i in range(x + x, n, x):
				s[i] = False
	return [i for i in range(n) if s[i] and i > 1]

ans = 0

l = [0] * (N+1)

for n in sieve(N+1):
	tmp = 1
	while n*tmp <= N:
		l[n*tmp] += 1
		tmp += 1

ans = 0
for v in l:
	ans += 1*(v>=K)
print(ans)
0