练习专区

今天的一小步就是明天的一大步
Problem 1298 一元多项式
Accepted: 3   Total Submit: 4
Time Limit: 1000ms   Memory Limit: 30720KB
Description
有一个一元多项式,如A(x)=12-7x+8x^10-5x^17。请你编程输出此一元多项式的系数大于0的各项。假设多项式按升幂排列。
Input
先输入一个整数T(0 Output
每行输出多项式中系数大于0的各项,先输出“Case id:”,id是序号。
Sample Input
2
4 12 0 -7 1 8 10 -5 17
3 -8 1 15 7 -6 10
Sample Output
Case 1:12 0 8 10 
Case 2:15 7
Hint
提交     返回