#7886: 請高手指正


cuh127 (futurhack~~~~~興國猩國也(絕對沒有在污辱女性))

學校 : 臺南市私立興國高級中學
編號 : 28132
來源 : [203.68.26.150]
最後登入時間 :
2014-04-02 16:51:03
d221. 10954 - Add All -- UVa10954 | From: [120.115.4.12] | 發表日期 : 2013-06-28 00:30

#include <stdio.h>
#include <stdlib.h>

/* run this program using the console pauser or add your own getch, system("pause") or input loop */

int main(int argc, char *argv[]) {
int a,c,i,j;
long long int b,x[5005],gg;
for(i=0;i<5005;i++)
{x[i]=0;
}
scanf("%d",&a);
while(a!=0)
{
for(i=0;i<a;i++)
{scanf("%lld",&x[i]);
}
for(i=0;i<a;i++)
{for(j=0;j<a-1;j++)
{if(x[j]>x[j+1])
{b=x[j];
x[j]=x[j+1];
x[j+1]=b;
    }
    }
    }
gg=x[0]*(a-1);j=1;
for(i=a-1;i>0;i=i-1)
{gg=gg+x[j]*i;
j=j+1;
}
printf("%lld\n",gg);
for(i=0;i<5005;i++)
{x[i]=0;
}
scanf("%d",&a);
}
return 0;
}
 
ZeroJudge Forum