码迷,mamicode.com
首页 > 其他好文 > 详细

【SOJ】Easy Math

时间:2018-04-20 21:59:03      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:lan   targe   using   enter   stream   get   mes   str   AC   

Easy Math

http://acm.scu.edu.cn/soj/problem.action?id=4436

题意:输入n 然后是n个数  问n个数的开方加一起是不是一个整数

思路:水

#include<iostream>
#include<cmath>
#include<cstring>
#include<algorithm>
using namespace std;
typedef long long ll;
int main()
{
    int n, i;
    ll a[100005];
    while(cin >> n)
    {
        int flag = 0;
        for(i = 0; i < n; i++)
        {
            cin >> a[i];
        }

        for(i = 0; i < n; i++)
        {
            int m = (int)sqrt(a[i]);
            if(m * m == a[i]) continue;
            else
                flag = 1;
        }
        if(flag) cout << "No" << endl;
        else cout << "Yes" << endl;
    }

    return 0;
}

 

【SOJ】Easy Math

标签:lan   targe   using   enter   stream   get   mes   str   AC   

原文地址:https://www.cnblogs.com/Kohinur/p/8893555.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!