結果

問題 No.713 素数の和
ユーザー object1234object1234
提出日時 2019-01-19 19:16:23
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 333 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 12,416 KB
最終ジャッジ日時 2024-07-18 06:48:18
合計ジャッジ時間 1,397 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 80 ms
12,288 KB
testcase_01 WA -
testcase_02 AC 83 ms
12,288 KB
testcase_03 AC 79 ms
12,160 KB
testcase_04 AC 80 ms
12,416 KB
testcase_05 AC 73 ms
12,160 KB
testcase_06 AC 77 ms
12,160 KB
testcase_07 AC 79 ms
12,160 KB
testcase_08 AC 82 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

def prime?(n)
    return false if n == 0 or n == 1
    res = true
    n.times do |i|
        next if i == 0 or i == 1
        if n % i == 0
            res = false
            break
        end
    end
    res
end

max = gets.chomp.to_i
res = []
(0..max).each do |i|
    res << i if prime?(i)
end

puts res.inject { |sum, k| sum + k}
0