結果

問題 No.458 異なる素数の和
ユーザー suppy193suppy193
提出日時 2017-01-13 15:40:22
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 406 bytes
コンパイル時間 81 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 168,192 KB
最終ジャッジ日時 2024-12-21 12:01:30
合計ジャッジ時間 23,182 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
19,236 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 425 ms
35,368 KB
testcase_05 TLE -
testcase_06 WA -
testcase_07 WA -
testcase_08 TLE -
testcase_09 WA -
testcase_10 AC 98 ms
12,416 KB
testcase_11 TLE -
testcase_12 WA -
testcase_13 AC 99 ms
12,288 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 245 ms
24,320 KB
testcase_17 AC 98 ms
12,544 KB
testcase_18 AC 98 ms
12,416 KB
testcase_19 AC 99 ms
12,416 KB
testcase_20 AC 100 ms
12,416 KB
testcase_21 AC 100 ms
12,416 KB
testcase_22 AC 99 ms
12,544 KB
testcase_23 WA -
testcase_24 AC 100 ms
12,416 KB
testcase_25 AC 99 ms
12,416 KB
testcase_26 AC 98 ms
12,288 KB
testcase_27 AC 1,440 ms
83,968 KB
testcase_28 TLE -
testcase_29 WA -
testcase_30 AC 933 ms
137,132 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:29: warning: ambiguous first argument; put parentheses or a space even after `-' operator
Syntax OK

ソースコード

diff #

require 'prime'

@n = gets.strip.to_i
@list = [2]
3.step(@n, 2) do |i|
	if i.prime?
		@list << i
	end
end
#p @list

@memo = Array.new(@n + 1, 0)
@list.each do |p|
	#p @memo
	@next_memo = @memo.clone
	(0..@n).each do |i|
		#p key, value
		if i + p > @n
			break
		end
		@next_memo[i + p] = [@memo[i + p], @memo[i] + 1].max 
	end
	@memo = @next_memo
end
#p @memo
if @memo[@n] != 0
	p @memo[@n]
else
	p -1
end
0