結果

問題 No.1140 EXPotentiaLLL!
ユーザー PNJPNJ
提出日時 2023-08-14 16:01:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,454 ms / 2,000 ms
コード長 537 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 115,840 KB
最終ジャッジ日時 2024-11-22 14:31:54
合計ジャッジ時間 15,586 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,404 ms
115,584 KB
testcase_01 AC 1,427 ms
115,328 KB
testcase_02 AC 1,406 ms
115,712 KB
testcase_03 AC 1,226 ms
115,584 KB
testcase_04 AC 1,036 ms
115,456 KB
testcase_05 AC 1,417 ms
115,584 KB
testcase_06 AC 1,396 ms
115,584 KB
testcase_07 AC 1,454 ms
115,840 KB
testcase_08 AC 244 ms
97,920 KB
testcase_09 AC 230 ms
97,664 KB
testcase_10 AC 252 ms
97,792 KB
testcase_11 AC 245 ms
97,536 KB
testcase_12 AC 248 ms
97,664 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