結果

問題 No.40 多項式の割り算
ユーザー cielciel
提出日時 2014-11-16 21:56:13
言語 Python2
(2.7.18)
結果
TLE  
実行時間 -
コード長 566 bytes
コンパイル時間 49 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 14,400 KB
最終ジャッジ日時 2024-06-10 07:53:22
合計ジャッジ時間 13,335 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
6,272 KB
testcase_01 AC 9 ms
6,272 KB
testcase_02 AC 10 ms
6,400 KB
testcase_03 AC 9 ms
6,144 KB
testcase_04 AC 2,556 ms
6,912 KB
testcase_05 AC 4,143 ms
7,168 KB
testcase_06 TLE -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/python

def sub(a,b):
	m=max(len(a),len(b))
	return [(0 if len(a)<=i else a[i])+(0 if len(b)<=i else -b[i]) for i in range(m)]

def checkio(exp,div):
	c=[]
	while len(div)<=len(exp):
		d=exp[-1]//div[-1]
		c.append(d)
		exp=sub(exp,[0]*(len(exp)-len(div))+[e*d for e in div])
		#assert exp[-1]==0
		exp.pop()
	while len(exp)>1 and exp[-1]==0: exp.pop()
	print(len(exp)-1)
	print(' '.join(str(e) for e in exp))

import sys
if sys.version_info[0]>=3: raw_input=input
raw_input()
checkio([int(e) for e in raw_input().split()],[0,-1,0,1])
0