結果

問題 No.458 異なる素数の和
ユーザー hoktohokto
提出日時 2020-03-25 12:27:32
言語 Ruby
(3.4.1)
結果
TLE  
実行時間 -
コード長 1,140 bytes
コンパイル時間 39 ms
コンパイル使用メモリ 8,064 KB
実行使用メモリ 26,752 KB
最終ジャッジ日時 2025-01-01 20:19:11
合計ジャッジ時間 23,345 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 93 ms
19,616 KB
testcase_01 AC 1,360 ms
20,128 KB
testcase_02 AC 1,723 ms
20,388 KB
testcase_03 AC 356 ms
26,752 KB
testcase_04 AC 448 ms
19,872 KB
testcase_05 TLE -
testcase_06 AC 1,687 ms
20,132 KB
testcase_07 AC 94 ms
12,928 KB
testcase_08 TLE -
testcase_09 AC 167 ms
13,184 KB
testcase_10 AC 85 ms
12,800 KB
testcase_11 TLE -
testcase_12 AC 88 ms
13,056 KB
testcase_13 AC 88 ms
12,800 KB
testcase_14 AC 84 ms
13,184 KB
testcase_15 AC 90 ms
12,800 KB
testcase_16 AC 251 ms
12,928 KB
testcase_17 AC 85 ms
12,800 KB
testcase_18 AC 82 ms
13,184 KB
testcase_19 AC 84 ms
13,056 KB
testcase_20 AC 82 ms
12,928 KB
testcase_21 AC 87 ms
13,056 KB
testcase_22 AC 84 ms
12,928 KB
testcase_23 AC 104 ms
12,928 KB
testcase_24 AC 84 ms
12,800 KB
testcase_25 AC 84 ms
12,800 KB
testcase_26 AC 86 ms
13,184 KB
testcase_27 AC 1,570 ms
13,184 KB
testcase_28 TLE -
testcase_29 AC 123 ms
12,800 KB
testcase_30 AC 987 ms
26,624 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

require "prime"
def get_i() #空白区切の入力を数値(整数)の配列で返す
  return gets.chomp.split(" ").map(&:to_i)
end
def get_f() #空白区切の入力を数値(実数)の配列で返す
  return gets.chomp.split(" ").map(&:to_f)
end
def get() #空白区切の入力を文字列の配列で返す
  return gets.chomp.split(" ")
end
def get_nsp() #入力されたものを一文字ずつに区切った文字列の配列で返す
  return gets.chomp.split("")
end
def yn_judge(bool,y="Yes",n="No") #boolに真偽を投げることで、trueならy、falseならnの値を出力する
  return bool ? y : n 
end
def array(size1,init=nil,size2=1) #size2に二次元配列時の最初の要素数、size1に次の配列の大きさ、initに初期値を投げることでその配列を返す
  if size2==1
    return Array.new(size1){init}
  else
    return Array.new(size2){Array.new(size1){init}}
  end
end

def max(a,b)
    return a>b ? a : b
end

N=gets.to_i
A=Prime.each(N).to_a

dp=array(N+1,-1)
dp[0]=0
A.each do|a|
  (N-a).downto(0) do|i|
      dp[i+a]=max(dp[i]+1,dp[i+a]) if i+a<=N and dp[i]!=-1
  end
end

puts dp[N]
0