結果
問題 | No.2191 一元二次式 mod 奇素数 |
ユーザー | kmjp |
提出日時 | 2023-01-14 11:36:00 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 25 ms / 2,000 ms |
コード長 | 2,050 bytes |
コンパイル時間 | 2,203 ms |
コンパイル使用メモリ | 213,616 KB |
実行使用メモリ | 6,400 KB |
最終ジャッジ日時 | 2024-06-07 13:39:59 |
合計ジャッジ時間 | 3,234 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | AC | 2 ms
5,376 KB |
testcase_17 | AC | 1 ms
5,376 KB |
testcase_18 | AC | 2 ms
5,376 KB |
testcase_19 | AC | 2 ms
5,376 KB |
testcase_20 | AC | 2 ms
5,376 KB |
testcase_21 | AC | 2 ms
5,376 KB |
testcase_22 | AC | 7 ms
5,376 KB |
testcase_23 | AC | 25 ms
6,400 KB |
testcase_24 | AC | 11 ms
5,376 KB |
testcase_25 | AC | 10 ms
5,376 KB |
testcase_26 | AC | 16 ms
5,504 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef signed long long ll; #define _P(...) (void)printf(__VA_ARGS__) #define FOR(x,to) for(x=0;x<(to);x++) #define FORR(x,arr) for(auto& x:arr) #define FORR2(x,y,arr) for(auto& [x,y]:arr) #define ALL(a) (a.begin()),(a.end()) #define ZERO(a) memset(a,0,sizeof(a)) #define MINUS(a) memset(a,0xff,sizeof(a)) template<class T> bool chmax(T &a, const T &b) { if(a<b){a=b;return 1;}return 0;} template<class T> bool chmin(T &a, const T &b) { if(a>b){a=b;return 1;}return 0;} //------------------------------------------------------- ll P,K; ll mo; ll modpow(ll a, ll n = mo-2, ll m=mo) { ll r=1; while(n) r=r*((n%2)?a:1)%m,a=a*a%m,n>>=1; return r; } int totient(int v) { int ret=v; for(int i=2;i*i<=v;i++) if(v%i==0) { ret=ret/i*(i-1); while(v%i==0) v/=i; } if(v>1) ret=ret/v*(v-1); return ret; } int mod_root(int p,int a) { // x^p=a mod mo vector<int> D; for(int i=2;i*i<=mo-1;i++) if((mo-1)%i==0) D.push_back(i),D.push_back((mo-1)/i); int g=2; while(1) { int ng=0; FORR(d,D) if(modpow(g,d)==1) ng=1; if(ng==0) break; g++; } ll cur=a; int rg=modpow(g); int mstep=sqrt(mo); map<int,int> M; int i; FOR(i,mstep+3) { M[cur]=i; cur=cur*rg%mo; } ll pg=modpow(g,mstep); int x=-1,step=0; cur=1; while(x==-1) { if(M.count(cur)) x=step+M[cur]; M[cur]=step; cur=cur*pg%mo; step+=mstep; } // g^x=aなのでg^(p*q)=g^x=aとしてq=x/p (mod mo-1) mo-1は合成数なのでGCDで割って対応 int tmo=mo-1; int gcd=__gcd(tmo,p); if(x%gcd) return -1; tmo/=gcd; x/=gcd; p/=gcd; return modpow(g,1LL*x*modpow(p,totient(tmo)-1,tmo)%tmo); } void solve() { int i,j,k,l,r,x,y; string s; cin>>P; K=(P-1)/2; ll a=((-4*K*K-16*K+1)%P+P)%P; mo=P; x=mod_root(2,a); if(x==-1) { cout<<"NO"<<endl; } else { cout<<"YES"<<endl; } } int main(int argc,char** argv){ string s;int i; if(argc==1) ios::sync_with_stdio(false), cin.tie(0); FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin); cout.tie(0); solve(); return 0; }