結果

問題 No.1140 EXPotentiaLLL!
ユーザー PNJPNJ
提出日時 2023-08-14 16:01:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,447 ms / 2,000 ms
コード長 537 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 115,968 KB
最終ジャッジ日時 2024-05-02 04:07:56
合計ジャッジ時間 14,951 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,354 ms
115,456 KB
testcase_01 AC 1,337 ms
115,584 KB
testcase_02 AC 1,447 ms
115,968 KB
testcase_03 AC 1,283 ms
115,584 KB
testcase_04 AC 918 ms
115,456 KB
testcase_05 AC 1,391 ms
115,456 KB
testcase_06 AC 1,321 ms
115,456 KB
testcase_07 AC 1,340 ms
115,072 KB
testcase_08 AC 225 ms
97,664 KB
testcase_09 AC 223 ms
97,536 KB
testcase_10 AC 224 ms
97,408 KB
testcase_11 AC 225 ms
97,536 KB
testcase_12 AC 220 ms
97,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

def sieve_of_eratosthenes(n):
    prime = [True for i in range(n+1)]
    prime[0] = False
    prime[1] = False

    sqrt_n = math.ceil(math.sqrt(n))
    for i in range(2, sqrt_n):
        if prime[i]:
            for j in range(2*i, n+1, i):
                prime[j] = False

    return prime
    
P = sieve_of_eratosthenes(5*10**6)

T = int(input())
for t in range(T):
    a,p = map(int,input().split())
    if P[p]:
        if a % p == 0:
            print(0)
        else:
            print(1)
    else:
        print(-1)
0