結果

問題 No.10 +か×か
ユーザー 👑 hos.lyrichos.lyric
提出日時 2015-02-20 23:52:22
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,918 ms / 5,000 ms
コード長 229 bytes
コンパイル時間 134 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 50,816 KB
最終ジャッジ日時 2024-12-14 15:28:27
合計ジャッジ時間 9,121 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 90 ms
12,160 KB
testcase_01 AC 88 ms
12,288 KB
testcase_02 AC 89 ms
12,288 KB
testcase_03 AC 1,915 ms
50,816 KB
testcase_04 AC 1,288 ms
37,504 KB
testcase_05 AC 87 ms
12,160 KB
testcase_06 AC 1,918 ms
50,816 KB
testcase_07 AC 1,277 ms
37,504 KB
testcase_08 AC 428 ms
19,328 KB
testcase_09 AC 695 ms
25,728 KB
testcase_10 AC 97 ms
12,416 KB
testcase_11 AC 91 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

gets
t=gets.to_i
a=gets.split.map &:to_i
d=(0..n=a.size).map{[]}
d[n][t]=1
n-=1
n.downto(2){|i|1.upto(t){|x|[x+a[i],x*a[i]].each{|y|d[i+1][y]&&d[i][x]=1}}}
x=a[0]
1.upto(n){|i|d[i+1][x+a[i]]?(print'+';x+=a[i]):(print'*';x*=a[i])}
0