結果

問題 No.1140 EXPotentiaLLL!
ユーザー DriceDrice
提出日時 2020-07-31 22:01:15
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 424 bytes
コンパイル時間 379 ms
コンパイル使用メモリ 31,232 KB
実行使用メモリ 22,652 KB
最終ジャッジ日時 2024-07-06 18:05:44
合計ジャッジ時間 4,213 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 195 ms
22,472 KB
testcase_01 AC 201 ms
22,452 KB
testcase_02 WA -
testcase_03 AC 180 ms
22,580 KB
testcase_04 AC 142 ms
22,468 KB
testcase_05 AC 197 ms
22,464 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 59 ms
22,584 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 56 ms
22,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<cstdio>
int vis[5000005];

void preWork(int n){
    vis[1] = 1;
    for(int i = 2; i <= n; i++){
        if(!vis[i]){
            for(int j = 2*i; j <= n; j+=i) vis[j] = 1;
        }
    }
}

int main(){
    preWork(5000000);
    int T;
    scanf("%d",&T);
    while(T--){
        long long a,p;
        scanf("%lld%lld",&a,&p);
        if(vis[p]) printf("-1\n");
        else printf("1\n"); 
    }
    return 0;
}
0