题目描述
由0~9这10个数字不重复、不遗漏,可以组成很多10位数字。
这其中也有很多恰好是平方数(是某个数的平方)。
比如:1026753849,就是其中最小的一个平方数。
请你找出其中最大的一个平方数是多少?
输出
输出一个整数表示答案
知识点:
- C++set容器去重法
注意:
记得开longlong!!!
代码如下:
#include <iostream>
#include <set>
#include <cmath>
using namespace std;
typedef long long LL;bool check(LL x) {set<int>s;while (x) {s.insert(x % 10);x = x / 10;}if (s.size() == 10)return true;return false;
}int main() {for (LL i = 9999999999; i; i--) {LL c = sqrt(i);//记得开long long,如果用int就凉了if (c * c == i && check(i)) {cout << i << endl;return 0;}}return 0;
}