結果

問題 No.106 素数が嫌い!2
コンテスト
ユーザー 双六
提出日時 2020-07-22 14:18:47
言語 PyPy3
(7.3.17)
コンパイル:
pypy3 -mpy_compile _filename_
実行:
pypy3 _filename_
結果
AC  
実行時間 203 ms / 5,000 ms
コード長 642 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 895 ms
コンパイル使用メモリ 85,412 KB
実行使用メモリ 122,612 KB
最終ジャッジ日時 2026-03-05 01:11:20
合計ジャッジ時間 4,378 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 13
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

import sys; input = sys.stdin.buffer.readline
sys.setrecursionlimit(10**7)
from collections import defaultdict
con = 10 ** 9 + 7; INF = float("inf")

def getlist():
	return list(map(int, input().split()))

num = 2 * 10 ** 6 + 1 
L = [1 for i in range(num)]; L[0] = 0; L[1] = 0
anslist = [0 for i in range(num)]
plist = []
for i in range(num):
	if L[i] == 1:
		plist.append(i)
		anslist[i] += 1
		c = 2
		while i * c <= num - 1:
			L[i * c] = 0
			anslist[i * c] += 1
			c += 1


#処理内容
def main():
	N, K = getlist()
	ans = 0
	for i in range(2, N + 1):
		if anslist[i] >= K:
			ans += 1

	print(ans)


if __name__ == '__main__':
	main()
0