QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#79596 | #3278. 算术 | tricyzhkx | 0 | 2ms | 3568kb | C++14 | 1.0kb | 2023-02-20 15:22:06 | 2023-02-20 15:22:09 |
Judging History
answer
# include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef __int128 lll;
ll Phi(ll n)
{
ll ans=n;
for(ll i=2;i*i<=n;i++)
if(n%i==0)
{
ans=ans/i*(i-1);
for(;n%i==0;n/=i);
}
if(n>1) ans=ans/n*(n-1);
return ans;
}
ll power(ll a,ll b,ll p)
{
ll ans=1;
for(;b;b>>=1,a=(lll)a*a%p)
if(b&1) ans=(lll)ans*a%p;
return ans;
}
int tot;
ll p,phi,pr[60],cnt[60];
ll Ord(ll n)
{
ll ans=1;
for(int i=1;i<=tot;i++)
{
ll cur=phi;
for(int j=0;j<cnt[i];j++) cur/=pr[i];
ll pw=power(n,cur,p);
for(;pw>1;pw=power(pw,pr[i],p)) ans*=pr[i];
}
return ans;
}
int main()
{
int T;
cin>>T>>p;
ll t=phi=Phi(p);
for(ll i=2;i*i<=t;i++)
if(t%i==0)
{
pr[++tot]=i;
for(;t%i==0;t/=i) cnt[tot]++;
}
if(t>1) pr[++tot]=t,cnt[tot]=1;
while(T--)
{
ll b;
scanf("%lld",&b);
if(__gcd(p,b)>1){puts("-1");continue;}
ll ord=Ord(b),ans;
if(ord&1){puts("-1");continue;}
ans=ord/2;
if(ans<=1) ans+=ord;
printf("%lld\n",ans-1);
}
return 0;
}
详细
Subtask #1:
score: 0
Wrong Answer
Test #1:
score: 5
Accepted
time: 2ms
memory: 3524kb
input:
10 3 10 7 13 4 17 28 29 13 4 30
output:
-1 -1 -1 -1 2 -1 2 -1 -1 -1
result:
ok 10 numbers
Test #2:
score: 0
Accepted
time: 2ms
memory: 3568kb
input:
10 3 17 21 29 8 25 21 8 14 26 7
output:
2 -1 2 2 -1 -1 2 2 2 -1
result:
ok 10 numbers
Test #3:
score: -5
Wrong Answer
time: 2ms
memory: 3324kb
input:
10 2 14 12 20 12 7 4 6 12 16 13
output:
-1 -1 -1 -1 -1 -1 -1 -1 -1 -1
result:
wrong answer 5th numbers differ - expected: '1', found: '-1'
Subtask #2:
score: 0
Skipped
Dependency #1:
0%
Subtask #3:
score: 0
Skipped
Dependency #1:
0%
Subtask #4:
score: 0
Skipped
Dependency #1:
0%
Subtask #5:
score: 0
Skipped
Dependency #1:
0%
Subtask #6:
score: 0
Skipped
Dependency #1:
0%
Subtask #7:
score: 0
Skipped
Dependency #1:
0%
Subtask #8:
score: 0
Skipped
Dependency #1:
0%
Subtask #9:
score: 0
Skipped
Dependency #1:
0%
Subtask #10:
score: 0
Skipped
Dependency #1:
0%