Skip to content

Instantly share code, notes, and snippets.

@Watson1978
Created January 23, 2012 23:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Watson1978/1666418 to your computer and use it in GitHub Desktop.
Save Watson1978/1666418 to your computer and use it in GitHub Desktop.
#!/usr/bin/env ruby
# -*- coding: utf-8 -*-
require 'prime'
# 最初の1000個の素数の合計
puts Prime.each(nil, Prime::EratosthenesGenerator.new).each_with_index.inject(0) { |sum, (elem, index)|
break sum if index > 1000
sum += elem
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment