0
0
已采纳
梁锦程
高级光能
高级光能
sort(a+1,a+m+1);
for(int i=1;i<=m;i++)
{
int now=a[i];
if(now*(m-i+1)>ans&&(m-i+1)<=n)
{
ans=now*(m-i+1);
sum=now;
}
}
0
0