結果

問題 No.106 素数が嫌い!2
ユーザー 双六双六
提出日時 2020-07-22 14:17:17
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 623 bytes
コンパイル時間 292 ms
コンパイル使用メモリ 86,980 KB
実行使用メモリ 119,272 KB
最終ジャッジ日時 2023-09-02 12:30:28
合計ジャッジ時間 5,602 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 219 ms
118,812 KB
testcase_02 AC 220 ms
118,716 KB
testcase_03 WA -
testcase_04 AC 226 ms
118,900 KB
testcase_05 AC 230 ms
118,896 KB
testcase_06 AC 225 ms
118,816 KB
testcase_07 AC 227 ms
119,112 KB
testcase_08 AC 224 ms
118,640 KB
testcase_09 AC 217 ms
118,872 KB
testcase_10 AC 219 ms
118,816 KB
testcase_11 AC 225 ms
118,772 KB
testcase_12 AC 246 ms
118,744 KB
testcase_13 WA -
testcase_14 AC 235 ms
118,852 KB
testcase_15 AC 232 ms
118,780 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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); 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