結果

問題 No.2750 Number of Prime Factors
ユーザー PNJPNJ
提出日時 2024-05-10 23:19:01
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 437 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 67,668 KB
最終ジャッジ日時 2024-05-10 23:19:03
合計ジャッジ時間 2,274 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 47 ms
65,804 KB
testcase_09 AC 48 ms
65,000 KB
testcase_10 AC 47 ms
64,704 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

def Eratosthenes(N):
  is_prime = [1 for i in range(N+1)]
  is_prime[0] = is_prime[1] = 0
  P = []
  for p in range(2,N+1):
    if is_prime[p] == 0:
      continue
    P.append(p)
    for d in range(2,N//p+1):
      q = p*d
      is_prime[q] = 0
  return P

P = Eratosthenes(200000)

N = int(input())
ans = 0
for p in P:
  if p == 2:
    ans = 1
    g = 2
    continue
  if g * p <= N:
    ans += 1
    g * p
  else:
    break
print(ans)
0