結果

問題 No.826 連絡網
ユーザー takakintakakin
提出日時 2020-07-14 22:15:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 777 bytes
コンパイル時間 291 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 91,008 KB
最終ジャッジ日時 2024-11-18 23:03:31
合計ジャッジ時間 3,741 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,224 KB
testcase_01 AC 40 ms
52,224 KB
testcase_02 AC 40 ms
52,480 KB
testcase_03 AC 53 ms
62,336 KB
testcase_04 AC 52 ms
62,720 KB
testcase_05 AC 49 ms
60,800 KB
testcase_06 AC 49 ms
61,440 KB
testcase_07 AC 58 ms
62,464 KB
testcase_08 AC 50 ms
61,056 KB
testcase_09 AC 53 ms
62,592 KB
testcase_10 AC 48 ms
60,160 KB
testcase_11 AC 54 ms
62,592 KB
testcase_12 AC 112 ms
84,736 KB
testcase_13 AC 78 ms
72,576 KB
testcase_14 AC 97 ms
79,872 KB
testcase_15 AC 58 ms
65,152 KB
testcase_16 AC 79 ms
73,472 KB
testcase_17 AC 79 ms
73,088 KB
testcase_18 AC 75 ms
70,784 KB
testcase_19 AC 126 ms
88,192 KB
testcase_20 AC 117 ms
86,144 KB
testcase_21 AC 52 ms
61,824 KB
testcase_22 AC 73 ms
71,680 KB
testcase_23 AC 77 ms
73,856 KB
testcase_24 AC 68 ms
68,864 KB
testcase_25 AC 127 ms
90,624 KB
testcase_26 AC 71 ms
70,144 KB
testcase_27 AC 112 ms
85,504 KB
testcase_28 AC 101 ms
81,024 KB
testcase_29 AC 78 ms
72,576 KB
testcase_30 AC 138 ms
91,008 KB
testcase_31 AC 81 ms
73,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda: sys.stdin.readline().rstrip()
n,p=map(int,input().split())
pf={}

for i in range(2,int(p**0.5)+1):
  while p%i==0:
    pf[i]=pf.get(i,0)+1
    p//=i
if p>1:
  pf[p]=1

def primes(n):
  is_prime=[True]*(n+1)
  is_prime[0]=False
  is_prime[1]=False
  for i in range(2,int(n**0.5)+1):
    if not is_prime[i]:
      continue
    for j in range(i*2,n+1,i):
      is_prime[j]=False
  return [i for i in range(n+1) if is_prime[i]]

P=primes(n)
PF=set(pf.keys())
p_min=min(PF)
while True:
	for pp in P:
		if p_min*pp<=n:
			PF.add(pp)
	if min(PF)==p_min:
		break
	else:
		p_min=min(PF)

Chk=[0]*n
for i in range(n):
	if Chk[i]==1:
		continue
	else:
		if i+1 in PF:
			Chk[i]=1
			mul=2
			while mul*(i+1)<=n:
				Chk[mul*(i+1)-1]=1
				mul+=1
print(sum(Chk))

0