結果

問題 No.458 異なる素数の和
ユーザー urutomurutom
提出日時 2017-04-17 15:59:24
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 211 bytes
コンパイル時間 38 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 12,800 KB
最終ジャッジ日時 2024-07-19 05:24:52
合計ジャッジ時間 18,155 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 94 ms
12,160 KB
testcase_01 AC 740 ms
12,544 KB
testcase_02 WA -
testcase_03 AC 228 ms
12,544 KB
testcase_04 AC 279 ms
12,416 KB
testcase_05 TLE -
testcase_06 AC 943 ms
12,672 KB
testcase_07 AC 101 ms
12,160 KB
testcase_08 TLE -
testcase_09 AC 135 ms
12,288 KB
testcase_10 AC 96 ms
12,160 KB
testcase_11 TLE -
testcase_12 AC 90 ms
12,288 KB
testcase_13 AC 97 ms
12,416 KB
testcase_14 AC 94 ms
12,288 KB
testcase_15 AC 93 ms
12,160 KB
testcase_16 AC 173 ms
12,416 KB
testcase_17 AC 103 ms
12,160 KB
testcase_18 AC 105 ms
12,288 KB
testcase_19 AC 103 ms
12,160 KB
testcase_20 AC 102 ms
12,160 KB
testcase_21 AC 106 ms
12,288 KB
testcase_22 AC 93 ms
12,288 KB
testcase_23 AC 96 ms
12,160 KB
testcase_24 AC 92 ms
12,288 KB
testcase_25 AC 92 ms
12,288 KB
testcase_26 AC 96 ms
12,288 KB
testcase_27 WA -
testcase_28 TLE -
testcase_29 WA -
testcase_30 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

require"prime"
n=gets.to_i
dp=Array.new(n+1)
dp[0]=0
max=temp=0
Prime.each(n){|p|
	0.upto(max){|k|
		next unless dp[k]
		temp=k+p
		break if temp>n+1
		dp[temp]=dp[k]+1 unless dp[temp]
	}
	max=temp
}
p dp[n]||-1
0