結果

問題 No.265 数学のテスト
ユーザー cielciel
提出日時 2015-08-09 03:05:41
言語 Ruby
(3.3.0)
結果
RE  
実行時間 -
コード長 557 bytes
コンパイル時間 97 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 28,928 KB
最終ジャッジ日時 2024-07-18 06:09:49
合計ジャッジ時間 5,566 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 AC 319 ms
28,928 KB
testcase_03 AC 185 ms
21,632 KB
testcase_04 AC 207 ms
22,144 KB
testcase_05 AC 236 ms
23,808 KB
testcase_06 AC 205 ms
21,888 KB
testcase_07 AC 225 ms
23,424 KB
testcase_08 AC 276 ms
26,112 KB
testcase_09 AC 199 ms
20,864 KB
testcase_10 AC 208 ms
21,504 KB
testcase_11 AC 225 ms
23,296 KB
testcase_12 AC 82 ms
12,288 KB
testcase_13 AC 105 ms
14,776 KB
testcase_14 AC 105 ms
14,208 KB
testcase_15 AC 82 ms
12,160 KB
testcase_16 AC 96 ms
13,952 KB
testcase_17 AC 76 ms
12,160 KB
testcase_18 AC 72 ms
12,288 KB
testcase_19 AC 75 ms
12,160 KB
testcase_20 AC 85 ms
12,288 KB
testcase_21 AC 82 ms
12,288 KB
testcase_22 AC 114 ms
14,644 KB
testcase_23 AC 80 ms
12,160 KB
testcase_24 AC 80 ms
12,160 KB
testcase_25 AC 147 ms
16,768 KB
testcase_26 AC 78 ms
12,288 KB
testcase_27 AC 76 ms
12,160 KB
testcase_28 AC 84 ms
12,928 KB
testcase_29 AC 76 ms
12,288 KB
testcase_30 AC 80 ms
12,544 KB
testcase_31 AC 78 ms
12,160 KB
testcase_32 AC 77 ms
12,416 KB
testcase_33 AC 74 ms
12,160 KB
testcase_34 AC 77 ms
12,160 KB
testcase_35 AC 77 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

#!/usr/bin/ruby
class Array
	def -@
		self.map(&:-@)
	end
	def +(other)
		m=[self.size,other.size].max
		m.times.map{|i|(self.size<=i ? 0 : self[i])+(other.size<=i ? 0 : other[i])}
	end
	def -(other)
		self+-other
	end
	def *(other)
		r=[]
		other.size.times{|i|
			r=r+i.times.map{0}.concat(self.map{|e|other[i]*e})
		}
		r
	end
end
def d(a)
	a.size<=1 ? [0] : 1.step(a.size-1).map{|i|i*a[i]}
end

gets
D=gets.to_i
S=gets.chomp.gsub(/(\d+)/,'[\1]').gsub('x','[0,1]').gsub('d{','d(').gsub('}',')')
A=eval S
puts A.concat((D+1-A.size).times.map{0}).join(' ')
0