QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#238675 | #6566. Power of Divisors | Fyind# | WA | 1ms | 3936kb | C++20 | 1.3kb | 2023-11-04 17:14:24 | 2023-11-04 17:14:25 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
#define _ <<" "<<
#define sz(x) ((int) (x).size())
typedef pair<int, int> pii;
typedef long long ll;
const int maxn = 3e5 + 5;
typedef long long ll;
#define debug(x) cout<<#x<<':'<<x<<endl;
ll ksm(ll a,ll n){
ll ans=1;
while(n){
if(n&1){
ans=ans*a;
}
a=a*a;
n>>=1;
}
return ans;
}
double root(ll n,ll x){
double l=1,r=sqrt(n)+1;
while(l+1e-3<r){
double mid=(l+r)/2;
if(pow(mid,x)<=n) l=mid;
else r=mid;
}
long long w= round(l);
if(ksm(w,x)==n){
return w;
}
else {
return -1;
}
}
ll f(ll n){
ll ans=1;ll y=n;
for(int i=2;i<=sqrt(y+1);i++){
ll t=1;
while(n%i==0){
n/=i;t++;
}
ans*=t;
}
if(n!=1) ans*=2;
return ans;
}
void solve(){
ll n;
cin>>n;
//debug(n);
for(int k=2;k<200;k++){
ll w=root(n,k);
if(w==-1){
continue;
}
if(f(w)==k){
cout<<w<<endl;
return ;
}
}
cout<<-1<<endl;
}
int main(){
int T;
T=1;
while(T--){
solve();
}
}
详细
Test #1:
score: 100
Accepted
time: 0ms
memory: 3812kb
input:
15625
output:
25
result:
ok single line: '25'
Test #2:
score: 0
Accepted
time: 0ms
memory: 3936kb
input:
64000000
output:
20
result:
ok single line: '20'
Test #3:
score: 0
Accepted
time: 0ms
memory: 3912kb
input:
65536
output:
-1
result:
ok single line: '-1'
Test #4:
score: -100
Wrong Answer
time: 1ms
memory: 3816kb
input:
1
output:
-1
result:
wrong answer 1st lines differ - expected: '1', found: '-1'