結果
| 問題 | No.1140 EXPotentiaLLL! |
| コンテスト | |
| ユーザー |
green+
|
| 提出日時 | 2020-08-01 00:22:03 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 582 bytes |
| コンパイル時間 | 616 ms |
| コンパイル使用メモリ | 83,324 KB |
| 実行使用メモリ | 22,924 KB |
| 最終ジャッジ日時 | 2024-07-06 22:43:40 |
| 合計ジャッジ時間 | 7,113 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 2 WA * 10 |
ソースコード
#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() {
int 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])cout<<1;
else cout<<-1;
cout<<endl;
}
return 0;
}
green+