Problem1093--数据结构概论上机考试四-1093

1093: 数据结构概论上机考试四-1093

Time Limit: 1 Sec  Memory Limit: 128 MB
Submit: 240  Solved: 1
[Submit] [Status] [Web Board] [Creator:]

Description

用链表实现求二元三次多项式关于x的导数。

Input

输入的数依次为:x,y,xy,x2,y2,x3,x2y,xy2,x3y的系数。

Output

输入的数依次为:x,y,xy,x2,y2,x3,x2y,xy2,x3y的系数。

Sample Input Copy

2 2 0 1 1 2 1 0 1

Sample Output Copy

2 0 2 6 0 0 3 0 0
2

Source/Category