結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
12,288 KB
testcase_01 AC 87 ms
12,288 KB
testcase_02 AC 326 ms
28,928 KB
testcase_03 AC 190 ms
21,504 KB
testcase_04 AC 210 ms
22,144 KB
testcase_05 AC 245 ms
23,936 KB
testcase_06 AC 196 ms
21,632 KB
testcase_07 AC 233 ms
23,680 KB
testcase_08 AC 281 ms
26,240 KB
testcase_09 AC 204 ms
21,120 KB
testcase_10 AC 207 ms
21,504 KB
testcase_11 AC 222 ms
23,168 KB
testcase_12 AC 77 ms
12,160 KB
testcase_13 AC 101 ms
14,720 KB
testcase_14 AC 106 ms
14,336 KB
testcase_15 AC 75 ms
12,416 KB
testcase_16 AC 98 ms
13,824 KB
testcase_17 AC 75 ms
12,288 KB
testcase_18 AC 74 ms
12,288 KB
testcase_19 AC 75 ms
12,160 KB
testcase_20 AC 78 ms
12,288 KB
testcase_21 AC 76 ms
12,288 KB
testcase_22 AC 110 ms
14,772 KB
testcase_23 AC 79 ms
12,160 KB
testcase_24 AC 76 ms
12,416 KB
testcase_25 AC 140 ms
16,640 KB
testcase_26 AC 77 ms
12,288 KB
testcase_27 AC 78 ms
12,160 KB
testcase_28 AC 93 ms
12,928 KB
testcase_29 AC 83 ms
12,416 KB
testcase_30 AC 83 ms
12,800 KB
testcase_31 AC 75 ms
12,416 KB
testcase_32 AC 75 ms
12,288 KB
testcase_33 AC 75 ms
12,160 KB
testcase_34 AC 75 ms
12,160 KB
testcase_35 AC 78 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