結果

問題 No.10 +か×か
ユーザー LaLa
提出日時 2021-01-07 10:41:56
言語 Ruby
(3.3.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 330 bytes
コンパイル時間 33 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 278,016 KB
最終ジャッジ日時 2024-05-08 12:03:48
合計ジャッジ時間 16,136 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
12,032 KB
testcase_01 AC 85 ms
12,288 KB
testcase_02 AC 87 ms
12,288 KB
testcase_03 TLE -
testcase_04 AC 828 ms
39,808 KB
testcase_05 AC 85 ms
12,160 KB
testcase_06 TLE -
testcase_07 AC 1,963 ms
98,816 KB
testcase_08 AC 466 ms
32,000 KB
testcase_09 AC 655 ms
33,792 KB
testcase_10 AC 83 ms
12,288 KB
testcase_11 AC 80 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n=gets.to_i
t=gets.to_i
a=gets.split.map(&:to_i)
dp=Array.new(n+1){Array.new(t+1,"!")}
dp[1][a[0]]=""

(1...n).each do |x|
  (0..t).each do |y|
    next if dp[x][y]=="!"
    dp[x+1][y+a[x]]=[dp[x+1][y+a[x]],dp[x][y]+"+"].max if y+a[x]<=t
    dp[x+1][y*a[x]]=[dp[x+1][y*a[x]],dp[x][y]+"*"].max if y*a[x]<=t
  end
end

puts dp[n][t]
0