666
2024-05-25 22:45:46
发布于:广东
9阅读
0回复
0点赞
#include <bits/stdc++.h>
#define endl '\n'
using namespace std;
typedef long long ll;
const int N = 1e5 + 10;
int t,n,m;
int main() {
ios::sync_with_stdio(false);
cin >> n;
int k = cbrt(n);
if (k * k * k == n) {
cout << "YES" << endl;
}else {
cout << "NO" << endl;
}
return 0;
}
这里空空如也
有帮助,赞一个