結果
問題 | No.577 Prime Powerful Numbers |
ユーザー |
|
提出日時 | 2025-04-27 21:17:38 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,506 bytes |
コンパイル時間 | 2,160 ms |
コンパイル使用メモリ | 195,624 KB |
実行使用メモリ | 7,848 KB |
最終ジャッジ日時 | 2025-04-27 21:17:49 |
合計ジャッジ時間 | 10,252 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 6 WA * 2 RE * 1 TLE * 1 |
ソースコード
#include <bits/stdc++.h> #define int __int128 namespace CZS_Office{ inline int read(){ int x=0,f=1; char ch=getchar(); while(ch<'0'||ch>'9'){ if(ch=='-')f=-1; ch=getchar(); } while(ch>='0'&&ch<='9')x=x*10+ch-'0',ch=getchar(); return x*f; } inline void write(int x){ if(x<0){ putchar('-'); x=-x; } if(x>9)write(x/10); putchar(x%10+'0'); return; } } using namespace std; using namespace CZS_Office; inline int ksm(int d,int z){ int res=1; while(z){ if(z&1){ if(1ull*d*res>1e18)return 2e18; res*=d; } d*=d;z>>=1; } return res; } inline int shr(int d,int z,int p){ int res=1; while(z){ if(z&1){ (res*=d)%=p; } (d*=d)%=p;z>>=1; } return res; } mt19937 rnd(time(0)); inline bool isp(int res){ int T=1000; while(T--){ int x=rnd()%(res-1)+1; if(shr(x,res-1,res)!=1)return 0; } return 1; } inline int czs(int x,int z){ int L=1,R=x; while(L<=R){ int mid=(L+R)>>1; int res=ksm(mid,z); if(res==x)return isp(mid); if(res>x)R=mid-1; else L=mid+1; } return 0; } inline bool chk(int x){ for(int i=1;i<=62;++i) if(czs(x,i))return 1; return 0; } inline bool liliang(int x){ if(x%2==0){ if(x>=4)return 1; else return 0; } else{ for(int i=2,j=1;i<=x&&j<=62;++j,i*=2){ if(chk(x-i))return 1; } return 0; } return 0; } signed main(){ // freopen("number.in","r",stdin); // freopen("number.out","w",stdout); int Q=read(); while(Q--){ int n=read(); if(liliang(n))cout<<"Yes\n"; else cout<<"No\n"; } return 0; }