結果

問題 No.265 数学のテスト
ユーザー cielciel
提出日時 2015-08-09 03:23:42
言語 Ruby
(3.4.1)
結果
AC  
実行時間 311 ms / 2,000 ms
コード長 699 bytes
コンパイル時間 128 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 28,800 KB
最終ジャッジ日時 2024-11-24 11:27:59
合計ジャッジ時間 5,569 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 80 ms
12,416 KB
testcase_01 AC 79 ms
12,288 KB
testcase_02 AC 311 ms
28,800 KB
testcase_03 AC 183 ms
21,504 KB
testcase_04 AC 201 ms
21,888 KB
testcase_05 AC 230 ms
23,680 KB
testcase_06 AC 190 ms
21,632 KB
testcase_07 AC 217 ms
23,552 KB
testcase_08 AC 270 ms
26,240 KB
testcase_09 AC 198 ms
20,864 KB
testcase_10 AC 199 ms
21,504 KB
testcase_11 AC 215 ms
23,040 KB
testcase_12 AC 76 ms
12,288 KB
testcase_13 AC 96 ms
14,924 KB
testcase_14 AC 98 ms
14,332 KB
testcase_15 AC 79 ms
12,160 KB
testcase_16 AC 96 ms
13,952 KB
testcase_17 AC 72 ms
12,288 KB
testcase_18 AC 73 ms
12,160 KB
testcase_19 AC 75 ms
12,160 KB
testcase_20 AC 78 ms
12,416 KB
testcase_21 AC 74 ms
12,160 KB
testcase_22 AC 109 ms
14,696 KB
testcase_23 AC 74 ms
12,288 KB
testcase_24 AC 72 ms
12,288 KB
testcase_25 AC 134 ms
16,768 KB
testcase_26 AC 73 ms
12,160 KB
testcase_27 AC 73 ms
12,288 KB
testcase_28 AC 82 ms
12,928 KB
testcase_29 AC 74 ms
12,160 KB
testcase_30 AC 82 ms
12,672 KB
testcase_31 AC 74 ms
12,160 KB
testcase_32 AC 73 ms
12,288 KB
testcase_33 AC 73 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=s.count('d(')>10000 ? [0] : eval(s)
puts A.concat((D+1-A.size).times.map{0}).join(' ')
__END__
d{x}は最大10000回しか現れないので、10000回以上d{が存在したら確実に0である。
0