結果

問題 No.2750 Number of Prime Factors
ユーザー PNJPNJ
提出日時 2024-05-10 23:19:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 438 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 82,104 KB
実行使用メモリ 66,352 KB
最終ジャッジ日時 2024-12-20 07:35:30
合計ジャッジ時間 2,141 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
64,332 KB
testcase_01 AC 52 ms
64,952 KB
testcase_02 AC 52 ms
66,352 KB
testcase_03 AC 54 ms
64,764 KB
testcase_04 AC 50 ms
65,628 KB
testcase_05 AC 52 ms
66,348 KB
testcase_06 AC 51 ms
65,220 KB
testcase_07 AC 52 ms
65,064 KB
testcase_08 AC 52 ms
65,132 KB
testcase_09 AC 52 ms
64,760 KB
testcase_10 AC 55 ms
65,568 KB
testcase_11 AC 52 ms
66,080 KB
testcase_12 AC 53 ms
65,248 KB
testcase_13 AC 53 ms
65,240 KB
testcase_14 AC 55 ms
65,572 KB
testcase_15 AC 58 ms
65,336 KB
testcase_16 AC 57 ms
65,260 KB
testcase_17 AC 56 ms
65,396 KB
testcase_18 AC 57 ms
65,240 KB
testcase_19 AC 56 ms
64,904 KB
testcase_20 AC 53 ms
64,572 KB
権限があれば一括ダウンロードができます

ソースコード

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