結果

問題 No.458 異なる素数の和
ユーザー hogeover30hogeover30
提出日時 2016-12-28 13:36:28
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 147 bytes
コンパイル時間 114 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 12,800 KB
最終ジャッジ日時 2024-05-08 23:42:39
合計ジャッジ時間 18,654 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

require'prime'
n=gets.to_i
dp=[-1]*-~n
dp[0]=0
Prime.each(n){|p|
	(n-p).downto(0){|i|
		dp[i+p]=dp[i]+1 if dp[i]>=0 and dp[i+p]<dp[i]
	}
}
p dp[n]
0