結果

問題 No.713 素数の和
ユーザー mesame3993mesame3993
提出日時 2021-11-19 16:04:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 36 ms / 2,000 ms
コード長 368 bytes
コンパイル時間 417 ms
コンパイル使用メモリ 82,700 KB
実行使用メモリ 59,444 KB
最終ジャッジ日時 2024-06-09 23:01:59
合計ジャッジ時間 1,227 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
59,432 KB
testcase_01 AC 33 ms
52,556 KB
testcase_02 AC 32 ms
53,048 KB
testcase_03 AC 36 ms
58,972 KB
testcase_04 AC 34 ms
59,444 KB
testcase_05 AC 33 ms
53,072 KB
testcase_06 AC 32 ms
52,208 KB
testcase_07 AC 36 ms
52,332 KB
testcase_08 AC 33 ms
52,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def eratosthenes(n):
  if n < 2:
    return [0]
  if n == 2:
    return [2]
  prime = [2]
  limit = int(n**0.5)+1
  data = [i for i in range(3, n+1, 2)]
  while True:
    p = data[0]
    if limit <= p:
      return prime + data
    prime.append(p)
    data = [e for e in data if e%p!=0]

def main():
  n = int(input())
  arr = eratosthenes(n)
  print(sum(arr))

main()
0