結果

問題 No.458 異なる素数の和
ユーザー masashi0217masashi0217
提出日時 2021-03-31 02:15:37
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,769 ms / 2,000 ms
コード長 366 bytes
コンパイル時間 234 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 12,800 KB
最終ジャッジ日時 2024-05-08 04:14:27
合計ジャッジ時間 58,315 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,752 ms
12,672 KB
testcase_01 AC 1,743 ms
12,544 KB
testcase_02 AC 1,750 ms
12,416 KB
testcase_03 AC 1,741 ms
12,544 KB
testcase_04 AC 1,744 ms
12,544 KB
testcase_05 AC 1,744 ms
12,416 KB
testcase_06 AC 1,738 ms
12,544 KB
testcase_07 AC 1,739 ms
12,544 KB
testcase_08 AC 1,766 ms
12,672 KB
testcase_09 AC 1,769 ms
12,800 KB
testcase_10 AC 1,738 ms
12,416 KB
testcase_11 AC 1,750 ms
12,672 KB
testcase_12 AC 1,768 ms
12,544 KB
testcase_13 AC 1,752 ms
12,416 KB
testcase_14 AC 1,750 ms
12,672 KB
testcase_15 AC 1,742 ms
12,800 KB
testcase_16 AC 1,739 ms
12,544 KB
testcase_17 AC 1,756 ms
12,672 KB
testcase_18 AC 1,740 ms
12,544 KB
testcase_19 AC 1,744 ms
12,800 KB
testcase_20 AC 1,743 ms
12,800 KB
testcase_21 AC 1,756 ms
12,800 KB
testcase_22 AC 1,749 ms
12,800 KB
testcase_23 AC 1,735 ms
12,800 KB
testcase_24 AC 1,738 ms
12,800 KB
testcase_25 AC 1,738 ms
12,672 KB
testcase_26 AC 1,767 ms
12,544 KB
testcase_27 AC 1,734 ms
12,800 KB
testcase_28 AC 1,736 ms
12,800 KB
testcase_29 AC 1,747 ms
12,672 KB
testcase_30 AC 1,738 ms
12,800 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

require 'prime'
n = gets.chomp.to_i
#素数を固定して回す
max = 20001
dp = Array.new(max,0)
a = Prime.each(max).to_a.reverse.map(&:to_i)

a.each do |i|
    dp[i] += 1
end
a.each do |i|
    (max-1-i).downto(i+1) do |j|
        if dp[j] > 0
            dp[i+j] = [dp[j]+1,dp[i+j]].max
        end
    end
end
if dp[n] == 0
    puts "-1"
else
    puts dp[n]
end
0