結果
問題 | No.1140 EXPotentiaLLL! |
ユーザー | green+ |
提出日時 | 2020-08-01 00:28:12 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 1,239 ms / 2,000 ms |
コード長 | 645 bytes |
コンパイル時間 | 733 ms |
コンパイル使用メモリ | 83,364 KB |
実行使用メモリ | 22,856 KB |
最終ジャッジ日時 | 2024-07-06 22:49:53 |
合計ジャッジ時間 | 12,415 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 12 |
ソースコード
#include <iostream> #include <vector> #include <cmath> #include <iomanip> #include <algorithm> #include <queue> using namespace std; #define rep(i,n) for(int i=0; i<(n); i++) #define all(x) (x).begin(), (x).end() int main() { long long t,k,a,p,n=5000010; vector<int>r(n,1);r[0]=0;r[1]=0; rep(i,n){ if(r[i]==1){ k=i*2; while(k<n){ r[k]=0; k+=i; } } } cin>>t; rep(i,t){ cin>>a>>p; if(r[p]){ if(a%p)cout<<1; else cout<<0; } else cout<<-1; cout<<endl; } return 0; }