thunderzo 2016-11-24 13:02 采纳率: 0%
浏览 2802

PAT advanced level 提交总是格式错误怎么破

1002. A+B for Polynomials (25)
时间限制
400 ms
内存限制
65536 kB
代码长度限制
16000 B
判题程序
Standard
作者
CHEN, Yue
This time, you are supposed to find A+B where A and B are two polynomials.

Input

Each input file contains one test case. Each case occupies 2 lines, and each line contains the information of a polynomial: K N1 aN1 N2 aN2 ... NK aNK, where K is the number of nonzero terms in the polynomial, Ni and aNi (i=1, 2, ..., K) are the exponents and coefficients, respectively. It is given that 1 <= K <= 10,0 <= NK < ... < N2 < N1 <=1000.

Output

For each test case you should output the sum of A and B in one line, with the same format as the input. Notice that there must be NO extra space at the end of each line. Please be accurate to 1 decimal place.

Sample Input
2 1 2.4 0 3.2
2 2 1.5 1 0.5
Sample Output
3 2 1.5 1 2.9 0 3.2

PAT上写了道题,codeblocks上运行正常,为什么提交总是格式错误啊。郁闷啊,还未解决。代码如下:

#include 
#include 

int main()
{
float a[1001];
int i=0,len=0;
for(;i a[i]=0;
int n=2;
    while(n!=0)
    {
        scanf("%d",&len);
        for(i=1;i         {
            int k; float co;
            scanf("%d",&k);
            scanf("%f",&co);
            a[k]+=co;
        }
        n--;
    }
    len=0;
for(i=0;i if(a[i]!=0)
len++;
printf("%d ",len);
for(i=1000;i>=0;i--)
if(a[i]!=0)
{
printf("%d ",i);
printf("%.1f",a[i]);
if(len)
printf(" ");
len--;
}
return 0;
}

  • 写回答

1条回答 默认 最新

  • devmiao 2016-11-24 20:33
    关注
    评论

报告相同问题?

悬赏问题

  • ¥15 关于#matlab#的问题:在模糊控制器中选出线路信息,在simulink中根据线路信息生成速度时间目标曲线(初速度为20m/s,15秒后减为0的速度时间图像)我想问线路信息是什么
  • ¥15 banner广告展示设置多少时间不怎么会消耗用户价值
  • ¥16 mybatis的代理对象无法通过@Autowired装填
  • ¥15 可见光定位matlab仿真
  • ¥15 arduino 四自由度机械臂
  • ¥15 wordpress 产品图片 GIF 没法显示
  • ¥15 求三国群英传pl国战时间的修改方法
  • ¥15 matlab代码代写,需写出详细代码,代价私
  • ¥15 ROS系统搭建请教(跨境电商用途)
  • ¥15 AIC3204的示例代码有吗,想用AIC3204测量血氧,找不到相关的代码。