結果

問題 No.2750 Number of Prime Factors
ユーザー miho-4miho-4
提出日時 2024-05-10 21:39:15
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 272 bytes
コンパイル時間 364 ms
コンパイル使用メモリ 82,080 KB
実行使用メモリ 75,608 KB
最終ジャッジ日時 2024-05-10 21:39:31
合計ジャッジ時間 2,370 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
74,704 KB
testcase_01 AC 61 ms
73,720 KB
testcase_02 AC 60 ms
73,864 KB
testcase_03 AC 59 ms
74,012 KB
testcase_04 AC 59 ms
74,432 KB
testcase_05 AC 65 ms
74,344 KB
testcase_06 AC 64 ms
75,220 KB
testcase_07 AC 64 ms
74,044 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 57 ms
74,228 KB
testcase_11 AC 59 ms
74,712 KB
testcase_12 AC 61 ms
73,824 KB
testcase_13 AC 61 ms
75,608 KB
testcase_14 AC 60 ms
74,240 KB
testcase_15 AC 59 ms
75,576 KB
testcase_16 AC 63 ms
74,400 KB
testcase_17 AC 59 ms
75,196 KB
testcase_18 AC 60 ms
74,380 KB
testcase_19 AC 61 ms
74,352 KB
testcase_20 AC 59 ms
74,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
ans=0
tmp=1
prime = [1 for i in range(10**6+1)]
p = 2
while (p * p <= n):
  if prime[p] == 1:
    tmp*=p
    if tmp<=n:
      ans+=1
    else:
      exit(print(ans))
    for i in range(p * 2, 10**6+1, p):
      prime[i] = False
  p += 1
      



print(ans)
0