weixin_44921406 2019-09-10 22:39 采纳率: 75%
浏览 214
已采纳

求助 acm报错 改不来了 求大佬帮忙

改了好多次了 要么PE 要么就TLE
我的代码:
#include
int main(void)
{
int M,N,i;
scanf("%d\n",&M);

while((M--)!=0)
{
while(scanf("%d ",&N),N)
{
int sum =0;
while((N--)!=0)
{
scanf("%d ",&i);
sum +=i;
}if(M !=1){
printf("%d\n\n",sum);
}
else
{ printf("%d\n",sum);
break;
}

}
}

return 0;
}

题目:
Problem Description
Your task is to calculate the sum of some integers.

Input
Input contains an integer N in the first line, and then N lines follow. Each line starts with a integer M, and then M integers follow in the same line.

Output
For each group of input integers you should output their sum in one line, and you must note that there is a blank line between outputs.

Sample Input
3
4 1 2 3 4
5 1 2 3 4 5
3 1 2 3

Sample Output
10

15

6

  • 写回答

1条回答 默认 最新

  • qtchen_1988 2019-09-11 12:32
    关注
    
    #include <stdio.h>
    #include<iostream>
    #include <malloc.h>
    #include <string.h>
    
    using namespace std;
    
    int main(void)
    {
        int M,N,item,sum;
        scanf("%d",&N);
    
        int *p_sum = (int *)malloc(N*sizeof(int));
        memset(p_sum,0x0,N*sizeof(int));
        for(int i=0;i<N;i++)
        {
            sum = 0;
            scanf("%d",&M);
            while((M--)!=0)
            {
                scanf("%d",&item);
                sum += item;
            }
            *(p_sum+i) = sum;
        }
    
        printf("######Output######\n");
        for(int j=0;j<N;j++)
        {
            printf("%d\n",p_sum[j]);
        }
    
        return 0;
    }
    
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥30 这是哪个作者做的宝宝起名网站
  • ¥60 版本过低apk如何修改可以兼容新的安卓系统
  • ¥25 由IPR导致的DRIVER_POWER_STATE_FAILURE蓝屏
  • ¥50 有数据,怎么建立模型求影响全要素生产率的因素
  • ¥50 有数据,怎么用matlab求全要素生产率
  • ¥15 TI的insta-spin例程
  • ¥15 完成下列问题完成下列问题
  • ¥15 C#算法问题, 不知道怎么处理这个数据的转换
  • ¥15 YoloV5 第三方库的版本对照问题
  • ¥15 请完成下列相关问题!