結果

問題 No.2750 Number of Prime Factors
ユーザー miho-4miho-4
提出日時 2024-05-10 21:41:37
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 301 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 82,568 KB
実行使用メモリ 68,056 KB
最終ジャッジ日時 2024-05-10 21:41:40
合計ジャッジ時間 2,021 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
66,844 KB
testcase_01 AC 61 ms
66,948 KB
testcase_02 AC 51 ms
68,056 KB
testcase_03 AC 51 ms
67,468 KB
testcase_04 AC 51 ms
67,540 KB
testcase_05 AC 56 ms
67,032 KB
testcase_06 AC 55 ms
67,960 KB
testcase_07 AC 54 ms
66,176 KB
testcase_08 AC 49 ms
66,412 KB
testcase_09 WA -
testcase_10 AC 48 ms
66,292 KB
testcase_11 AC 53 ms
66,432 KB
testcase_12 AC 49 ms
66,592 KB
testcase_13 AC 52 ms
66,544 KB
testcase_14 AC 52 ms
66,912 KB
testcase_15 AC 52 ms
66,084 KB
testcase_16 AC 70 ms
67,696 KB
testcase_17 AC 51 ms
66,704 KB
testcase_18 AC 53 ms
66,696 KB
testcase_19 AC 55 ms
66,792 KB
testcase_20 AC 55 ms
66,596 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
ans=0
tmp=1
prime = [True for i in range(10**6+1)]
p = 2
k=n
if n<=4:
  k=10
while (p * p <= k):
  if (prime[p] == True):
    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