結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 41 ms
55,016 KB
testcase_02 AC 35 ms
55,476 KB
testcase_03 AC 34 ms
54,168 KB
testcase_04 AC 38 ms
61,364 KB
testcase_05 AC 41 ms
62,908 KB
testcase_06 AC 48 ms
62,936 KB
testcase_07 AC 44 ms
62,192 KB
testcase_08 AC 36 ms
54,080 KB
testcase_09 AC 40 ms
62,128 KB
testcase_10 AC 39 ms
62,192 KB
testcase_11 AC 38 ms
61,340 KB
testcase_12 AC 39 ms
61,800 KB
testcase_13 AC 38 ms
61,856 KB
testcase_14 AC 40 ms
62,836 KB
testcase_15 AC 41 ms
61,168 KB
testcase_16 AC 39 ms
62,408 KB
testcase_17 AC 39 ms
60,704 KB
testcase_18 AC 40 ms
61,804 KB
testcase_19 AC 42 ms
62,728 KB
testcase_20 AC 38 ms
61,628 KB
testcase_21 AC 39 ms
60,484 KB
testcase_22 AC 39 ms
60,356 KB
testcase_23 AC 38 ms
61,172 KB
testcase_24 AC 38 ms
61,600 KB
testcase_25 AC 34 ms
54,208 KB
testcase_26 WA -
testcase_27 AC 34 ms
55,172 KB
testcase_28 WA -
testcase_29 AC 35 ms
53,728 KB
testcase_30 AC 34 ms
53,776 KB
testcase_31 AC 35 ms
54,912 KB
testcase_32 WA -
testcase_33 AC 34 ms
54,304 KB
testcase_34 AC 36 ms
55,216 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 <= 3:
		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