首页 > 其他 > 详细

POJ 2209 The King#贪心

时间:2016-02-28 16:53:08      阅读:114      评论:0      收藏:0      [点我收藏+]

(~ ̄▽ ̄)~*  水

//水题;潜力^e为正数(e为2时都可以)的儿子都可以去上战场了,
//英文要看懂,exponent指数,不超过3的正数
#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;

int main()
{
    int n,e,son[105];
    while(~scanf("%d",&n))
    {
        int cha=0;
        scanf("%d",&e);
        for(int i=0;i<n;i++)
            scanf("%d",&son[i]);
        if(e==3)
        {
            for(int i=0;i<n;i++)
                if(son[i]>0)
                    cha+=son[i]*son[i]*son[i];
        }
        else if(e==2)//注意e为2时,都为平方后都为正数
        {
            for(int i=0;i<n;i++)
                    cha+=son[i]*son[i];
        }
        else if(e==1)
        {
            for(int i=0;i<n;i++)
                if(son[i]>0)
                    cha+=son[i];
        }
        printf("%d\n",cha);
    }
    return 0;
}

POJ 2209 The King#贪心

原文:http://www.cnblogs.com/atmacmer/p/5224969.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!