51nod 1717 好数 (水题)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了51nod 1717 好数 (水题)相关的知识,希望对你有一定的参考价值。

题目:

 

 

 

 

看起来很复杂,其实就是有多少个素因子就翻转多少次。

然后考虑到只有平方数有奇数个素因子。

 

一次过,上代码把:

#include <iostream>
#include <algorithm>
#include <map>
#include <vector>
#include <set>
#include <math.h>
#include <queue>
#include <assert.h>
#include <stdio.h>
#include <stdlib.h>
#include <string>
using namespace std;
typedef long long ll;
#define INF 2147483647


int main(){
    ll n;
    cin >> n;
    ll p = sqrt(n);
    cout << n-p << endl;
    return 0;
}

 

以上是关于51nod 1717 好数 (水题)的主要内容,如果未能解决你的问题,请参考以下文章

51nod 数数字(水题)

51nod - 1586 - 约数和 - 水题

51nod1118(水题)

51nod 博弈论水题

51nod 1283 最小周长(水题)

大数相乘 51nod 1027 水题