結果

問題 No.106 素数が嫌い!2
ユーザー takakintakakin
提出日時 2020-05-12 21:28:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 435 ms / 5,000 ms
コード長 636 bytes
コンパイル時間 223 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 101,888 KB
最終ジャッジ日時 2024-09-13 23:40:56
合計ジャッジ時間 4,527 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 227 ms
87,552 KB
testcase_01 AC 41 ms
52,352 KB
testcase_02 AC 42 ms
52,224 KB
testcase_03 AC 43 ms
51,968 KB
testcase_04 AC 230 ms
88,064 KB
testcase_05 AC 431 ms
101,504 KB
testcase_06 AC 435 ms
101,760 KB
testcase_07 AC 424 ms
101,504 KB
testcase_08 AC 80 ms
66,944 KB
testcase_09 AC 81 ms
67,200 KB
testcase_10 AC 426 ms
101,888 KB
testcase_11 AC 226 ms
86,400 KB
testcase_12 AC 432 ms
99,584 KB
testcase_13 AC 42 ms
52,608 KB
testcase_14 AC 42 ms
52,352 KB
testcase_15 AC 47 ms
57,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda: sys.stdin.readline().rstrip()
n,k=map(int,input().split())
def primes(n):
  is_prime=[1]*(n+1)
  is_prime[0]=0
  is_prime[1]=0
  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]=0
  return [is_prime,[i for i in range(n+1) if is_prime[i]]]
T,P=primes(n)
ans=0
for i in range(2,n+1):
  if T[i]:
    if T[i]>=k:
      ans+=1
    continue
  else:
    for p in P:
      if i%p:
        continue
      else:
        if (i//p)%p:
          T[i]=T[i//p]+1
        else:
          T[i]=T[i//p]
        break
    if T[i]>=k:
      ans+=1
print(ans)
0