結果

問題 No.106 素数が嫌い!2
ユーザー 双六双六
提出日時 2020-07-22 14:17:17
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 623 bytes
コンパイル時間 634 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 117,248 KB
最終ジャッジ日時 2024-06-11 19:11:07
合計ジャッジ時間 5,663 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 236 ms
104,704 KB
testcase_02 AC 242 ms
104,448 KB
testcase_03 WA -
testcase_04 AC 228 ms
105,344 KB
testcase_05 AC 245 ms
106,880 KB
testcase_06 AC 228 ms
104,960 KB
testcase_07 AC 214 ms
104,576 KB
testcase_08 AC 217 ms
105,088 KB
testcase_09 AC 234 ms
104,832 KB
testcase_10 AC 231 ms
104,704 KB
testcase_11 AC 224 ms
105,472 KB
testcase_12 AC 260 ms
117,248 KB
testcase_13 WA -
testcase_14 AC 238 ms
104,520 KB
testcase_15 AC 227 ms
104,448 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