結果

問題 No.458 異なる素数の和
ユーザー cielciel
提出日時 2016-12-09 00:24:06
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 153 bytes
コンパイル時間 367 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 18,304 KB
最終ジャッジ日時 2024-05-06 09:48:57
合計ジャッジ時間 13,964 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
17,792 KB
testcase_01 AC 943 ms
12,544 KB
testcase_02 AC 1,237 ms
12,672 KB
testcase_03 AC 276 ms
12,544 KB
testcase_04 AC 324 ms
12,288 KB
testcase_05 TLE -
testcase_06 AC 1,153 ms
12,416 KB
testcase_07 AC 92 ms
12,288 KB
testcase_08 TLE -
testcase_09 AC 145 ms
12,160 KB
testcase_10 AC 89 ms
12,288 KB
testcase_11 TLE -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

#!/usr/bin/ruby
require 'prime'
n=gets.to_i
a=[0,*[-1]*n]
Prime.each(n){|e|
	n.downto(e){|i|
		if a[i-e]>=0
			a[i]=[a[i-e]+1,a[i]].max
		end
	}
}
p a[n]
0