結果

問題 No.1140 EXPotentiaLLL!
ユーザー MineMine
提出日時 2021-01-28 18:26:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,805 ms / 2,000 ms
コード長 617 bytes
コンパイル時間 297 ms
コンパイル使用メモリ 87,060 KB
実行使用メモリ 117,656 KB
最終ジャッジ日時 2023-09-08 09:36:23
合計ジャッジ時間 19,127 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,670 ms
117,468 KB
testcase_01 AC 1,607 ms
117,428 KB
testcase_02 AC 1,656 ms
117,436 KB
testcase_03 AC 1,441 ms
117,560 KB
testcase_04 AC 1,224 ms
117,572 KB
testcase_05 AC 1,627 ms
117,432 KB
testcase_06 AC 1,581 ms
117,508 KB
testcase_07 AC 1,805 ms
117,656 KB
testcase_08 AC 476 ms
116,312 KB
testcase_09 AC 533 ms
116,540 KB
testcase_10 AC 490 ms
116,432 KB
testcase_11 AC 484 ms
116,528 KB
testcase_12 AC 480 ms
116,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
import math


def Sieve_of_Eratosthenes(maxA):
    lst = [None]*(maxA+1)
    lst[0] = False
    lst[1] = False
    for i in range(2, maxA+1):
        if lst[i] is None:
            for g in range(i, maxA+1, i):
                if lst[g] is None:
                    lst[g] = False
            lst[i] = True
    return lst


maxA = 5*10**6 + 1
lst = Sieve_of_Eratosthenes(maxA)
t = int(input())
for _ in range(t):
    a, p = map(int, input().split())
    if lst[p]:
        if math.gcd(a, p) == 1:
            print(1)
        else:
            print(0)
    else:
        print(-1)
0