結果

問題 No.10 +か×か
ユーザー gigurururugigurururu
提出日時 2014-11-27 14:23:46
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,732 ms / 5,000 ms
コード長 277 bytes
コンパイル時間 99 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 92,712 KB
最終ジャッジ日時 2024-12-14 15:26:12
合計ジャッジ時間 5,358 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
12,160 KB
testcase_01 AC 90 ms
12,288 KB
testcase_02 AC 96 ms
12,288 KB
testcase_03 AC 1,092 ms
78,412 KB
testcase_04 AC 114 ms
13,184 KB
testcase_05 AC 92 ms
12,160 KB
testcase_06 AC 1,732 ms
92,712 KB
testcase_07 AC 753 ms
44,616 KB
testcase_08 AC 153 ms
16,384 KB
testcase_09 AC 202 ms
20,992 KB
testcase_10 AC 92 ms
12,160 KB
testcase_11 AC 91 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

gets
$t=gets.to_i
s,*$a=gets.split.map(&:to_i)

$memo={}
def dfs i,n
  return if $memo[[i,n]]
  $memo[[i,n]]=true
  return n==$t&&[] if !$a[i]
  return if n>$t
  if r=dfs(i+1,n+$a[i])
    [?+]+r
  elsif r=dfs(i+1,n*$a[i])
    [?*]+r
  end
end

puts dfs(0,s)*""
0