Uva 11059
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Uva 11059相关的知识,希望对你有一定的参考价值。
注意long long long long longlong !!!!!!
还有 printf的时候 明明longlong型的答案 用了%d WA了也看不出,这个细节要注意!!!
1 #include <cstdio> 2 int a[20]; 3 int main() 4 { 5 int n,p=1;long long ans,sum; 6 while(~scanf("%d",&n)) 7 { 8 for(int i=0;i<n;i++) 9 scanf("%d",&a[i]); 10 ans=0; 11 12 for(int i=0;i<n;i++) 13 { 14 sum=1; 15 for(int j=i;j<n;j++) 16 { 17 sum*=a[j]; 18 if(sum>ans) ans=sum; 19 } 20 } 21 22 printf("Case #%d: The maximum product is %lld.\n\n",p++,ans); 23 } 24 return 0; 25 }
以上是关于Uva 11059的主要内容,如果未能解决你的问题,请参考以下文章
枚举专项练习_Uva725(Division)_Uva11059(Maximun Product)