結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
12,160 KB
testcase_01 AC 81 ms
12,288 KB
testcase_02 AC 323 ms
28,800 KB
testcase_03 AC 192 ms
21,632 KB
testcase_04 AC 211 ms
22,016 KB
testcase_05 AC 232 ms
23,808 KB
testcase_06 AC 197 ms
21,888 KB
testcase_07 AC 223 ms
23,552 KB
testcase_08 AC 267 ms
26,240 KB
testcase_09 AC 195 ms
20,864 KB
testcase_10 AC 254 ms
21,504 KB
testcase_11 AC 222 ms
23,040 KB
testcase_12 AC 76 ms
12,288 KB
testcase_13 AC 100 ms
14,720 KB
testcase_14 AC 101 ms
14,432 KB
testcase_15 AC 78 ms
12,288 KB
testcase_16 AC 95 ms
13,952 KB
testcase_17 AC 76 ms
12,160 KB
testcase_18 AC 75 ms
12,160 KB
testcase_19 AC 77 ms
12,288 KB
testcase_20 AC 81 ms
12,288 KB
testcase_21 AC 75 ms
12,288 KB
testcase_22 AC 110 ms
14,544 KB
testcase_23 AC 76 ms
12,288 KB
testcase_24 AC 75 ms
12,288 KB
testcase_25 AC 136 ms
16,640 KB
testcase_26 AC 75 ms
12,160 KB
testcase_27 AC 76 ms
12,160 KB
testcase_28 AC 86 ms
13,056 KB
testcase_29 AC 78 ms
12,160 KB
testcase_30 AC 85 ms
12,928 KB
testcase_31 AC 75 ms
12,288 KB
testcase_32 AC 76 ms
12,288 KB
testcase_33 AC 78 ms
12,032 KB
testcase_34 AC 78 ms
12,160 KB
testcase_35 AC 86 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

class Array
	def +(o) [self.size,o.size].max.times.map{|i|(self[i]||0)+(o[i]||0)} end
	def *(o)
		r=[]
		o.size.times{|i|r=r+i.times.map{0}.concat(self.map{|e|o[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(' ')
0