結果

問題 No.458 異なる素数の和
ユーザー horiesinitihoriesiniti
提出日時 2018-04-03 07:05:53
言語 Ruby
(3.3.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 461 bytes
コンパイル時間 62 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 12,544 KB
最終ジャッジ日時 2024-06-26 07:05:05
合計ジャッジ時間 16,937 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
12,288 KB
testcase_01 AC 745 ms
12,544 KB
testcase_02 AC 954 ms
12,416 KB
testcase_03 AC 242 ms
12,160 KB
testcase_04 AC 283 ms
12,160 KB
testcase_05 TLE -
testcase_06 AC 904 ms
12,544 KB
testcase_07 AC 109 ms
12,416 KB
testcase_08 TLE -
testcase_09 AC 147 ms
12,288 KB
testcase_10 AC 107 ms
12,160 KB
testcase_11 TLE -
testcase_12 AC 106 ms
12,288 KB
testcase_13 AC 109 ms
12,160 KB
testcase_14 AC 105 ms
12,032 KB
testcase_15 AC 104 ms
12,288 KB
testcase_16 AC 184 ms
12,160 KB
testcase_17 AC 104 ms
12,160 KB
testcase_18 AC 107 ms
12,288 KB
testcase_19 AC 105 ms
12,288 KB
testcase_20 AC 105 ms
12,288 KB
testcase_21 AC 106 ms
12,288 KB
testcase_22 AC 109 ms
12,288 KB
testcase_23 AC 105 ms
12,288 KB
testcase_24 AC 105 ms
12,032 KB
testcase_25 AC 105 ms
12,160 KB
testcase_26 AC 105 ms
12,288 KB
testcase_27 AC 866 ms
12,416 KB
testcase_28 TLE -
testcase_29 AC 125 ms
12,160 KB
testcase_30 AC 574 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:34: warning: ambiguous first argument; put parentheses or a space even after `-' operator
Syntax OK

ソースコード

diff #

require 'prime'
n=gets.to_i
dp=[0]*(n+2)
x=Prime.each(n).to_a
t=n/2+2
sum=0
while (x.empty? == false) && (x[0]*2<=n)
	e=x.shift
	sum+=e
	sum=n if sum>n
	t=sum-e+1
	t.times{|e2|
		p2=t-e2
		p3=e+p2
		break if p2<0
		next if p3>n
		
		if dp[p2]>0 && dp[p3]<dp[p2]+1
			dp[p3]=dp[p2]+1
		end
	}
	dp[e]=1 if dp[e]==0
end
ans=dp[n]
x.each{|e|
	p1=n-e
	break if p1<0
	if (dp[p1]>0 || p1==0) && ans<dp[p1]+1
		ans=dp[p1]+1
	end
	
}
if ans<1
	puts -1
else
	puts ans
end
0