結果

問題 No.1140 EXPotentiaLLL!
ユーザー FromBooskaFromBooska
提出日時 2023-10-02 15:10:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,550 ms / 2,000 ms
コード長 530 bytes
コンパイル時間 495 ms
コンパイル使用メモリ 81,972 KB
実行使用メモリ 115,968 KB
最終ジャッジ日時 2024-07-26 13:47:34
合計ジャッジ時間 16,889 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,479 ms
115,584 KB
testcase_01 AC 1,522 ms
115,968 KB
testcase_02 AC 1,458 ms
115,584 KB
testcase_03 AC 1,277 ms
115,584 KB
testcase_04 AC 1,062 ms
115,584 KB
testcase_05 AC 1,472 ms
115,328 KB
testcase_06 AC 1,501 ms
115,584 KB
testcase_07 AC 1,550 ms
115,756 KB
testcase_08 AC 330 ms
113,184 KB
testcase_09 AC 344 ms
113,408 KB
testcase_10 AC 341 ms
113,500 KB
testcase_11 AC 336 ms
113,536 KB
testcase_12 AC 326 ms
113,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# ポラード・ロー、ミラー・ラビンでTLE
# 問題制約を見るとP<10**6となっているので最初に素数列挙しよう

n = 5*10**6+5
is_prime = [1]*(n + 1)
is_prime[0] = 0  
is_prime[1] = 0
for p in range(2, n + 1):
    if is_prime[p]:
        for q in range(2*p, n + 1, p):
            is_prime[q] = 0

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