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

hdoj:2053

时间:2016-11-04 20:13:51      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:vector   span   std   count   cout   stream   状态   ring   nbsp   

#include <iostream>
#include <string>
#include <vector>

using namespace std;


/*
无穷多次操作,第n灯的状态
*/
int main()
{
    long long n;
    while (cin >> n)
    {
        int count = 0;
        for (int i = 1; i <= n; i++)
        {
            if (n%i == 0)
            {
                count++;
            }
        }
        if (count % 2 == 0)
        {
            cout << 0 << endl;
        }
        else
        {
            cout << 1 << endl;
        }
    }
}

 

hdoj:2053

标签:vector   span   std   count   cout   stream   状态   ring   nbsp   

原文地址:http://www.cnblogs.com/theskulls/p/6031136.html

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