結果

問題 No.40 多項式の割り算
ユーザー 双六双六
提出日時 2020-07-22 13:38:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 44 ms / 5,000 ms
コード長 630 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 82,536 KB
実行使用メモリ 62,988 KB
最終ジャッジ日時 2024-06-11 17:32:28
合計ジャッジ時間 2,432 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
54,780 KB
testcase_01 AC 39 ms
55,376 KB
testcase_02 AC 35 ms
53,876 KB
testcase_03 AC 34 ms
54,516 KB
testcase_04 AC 39 ms
61,232 KB
testcase_05 AC 40 ms
61,780 KB
testcase_06 AC 40 ms
62,780 KB
testcase_07 AC 38 ms
61,984 KB
testcase_08 AC 35 ms
54,568 KB
testcase_09 AC 38 ms
62,712 KB
testcase_10 AC 38 ms
62,464 KB
testcase_11 AC 37 ms
61,536 KB
testcase_12 AC 39 ms
61,564 KB
testcase_13 AC 40 ms
62,924 KB
testcase_14 AC 40 ms
61,772 KB
testcase_15 AC 40 ms
62,120 KB
testcase_16 AC 40 ms
62,988 KB
testcase_17 AC 44 ms
60,772 KB
testcase_18 AC 43 ms
61,408 KB
testcase_19 AC 38 ms
62,008 KB
testcase_20 AC 39 ms
61,288 KB
testcase_21 AC 38 ms
61,764 KB
testcase_22 AC 39 ms
61,520 KB
testcase_23 AC 40 ms
61,572 KB
testcase_24 AC 38 ms
61,924 KB
testcase_25 AC 35 ms
54,028 KB
testcase_26 AC 35 ms
55,136 KB
testcase_27 AC 34 ms
53,552 KB
testcase_28 AC 35 ms
54,296 KB
testcase_29 AC 35 ms
54,868 KB
testcase_30 AC 35 ms
54,244 KB
testcase_31 AC 37 ms
54,540 KB
testcase_32 AC 36 ms
54,588 KB
testcase_33 AC 36 ms
55,100 KB
testcase_34 AC 36 ms
54,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys; input = sys.stdin.buffer.readline
sys.setrecursionlimit(10**7)
from collections import defaultdict
con = 10 ** 9 + 7; INF = float("inf")

def getlist():
	return list(map(int, input().split()))

#処理内容
def main():
	D = int(input())
	A = getlist()
	if D <= 2:
		print(D)
		print(*A)
		return

	for i in range(D - 2):
		a = A[-1 - i]
		A[-1 - i] = 0
		A[-3 - i] += a

	# print(A)
	if A[2] == 0:
		if A[1] == 0:
			if A[0] == 0:
				print(0)
				print(0)
			else:
				print(0)
				print(A[0])
		else:
			print(1)
			print(A[0], A[1])
	else:
		print(2)
		print(A[0], A[1], A[2])



if __name__ == '__main__':
	main()
0