結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 97 ms
12,032 KB
testcase_01 AC 96 ms
12,288 KB
testcase_02 AC 359 ms
28,672 KB
testcase_03 AC 223 ms
21,376 KB
testcase_04 AC 240 ms
21,760 KB
testcase_05 AC 265 ms
23,552 KB
testcase_06 AC 226 ms
21,760 KB
testcase_07 AC 265 ms
23,296 KB
testcase_08 AC 321 ms
26,112 KB
testcase_09 AC 226 ms
20,864 KB
testcase_10 AC 234 ms
21,376 KB
testcase_11 AC 247 ms
23,040 KB
testcase_12 AC 90 ms
12,160 KB
testcase_13 AC 113 ms
14,612 KB
testcase_14 AC 117 ms
14,080 KB
testcase_15 AC 92 ms
12,160 KB
testcase_16 AC 113 ms
13,696 KB
testcase_17 AC 87 ms
12,288 KB
testcase_18 AC 88 ms
12,160 KB
testcase_19 AC 89 ms
12,032 KB
testcase_20 AC 90 ms
12,160 KB
testcase_21 AC 87 ms
12,160 KB
testcase_22 AC 126 ms
14,516 KB
testcase_23 AC 86 ms
12,032 KB
testcase_24 AC 87 ms
12,032 KB
testcase_25 AC 157 ms
16,512 KB
testcase_26 AC 87 ms
12,032 KB
testcase_27 AC 88 ms
12,032 KB
testcase_28 AC 100 ms
12,928 KB
testcase_29 AC 87 ms
12,160 KB
testcase_30 AC 97 ms
12,416 KB
testcase_31 AC 87 ms
12,032 KB
testcase_32 AC 87 ms
12,032 KB
testcase_33 AC 89 ms
12,160 KB
testcase_34 AC 88 ms
12,288 KB
testcase_35 AC 88 ms
12,032 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