結果

問題 No.1140 EXPotentiaLLL!
ユーザー ShirotsumeShirotsume
提出日時 2023-02-17 19:52:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,286 ms / 2,000 ms
コード長 536 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 156,544 KB
最終ジャッジ日時 2024-07-19 11:17:50
合計ジャッジ時間 17,412 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,184 ms
156,544 KB
testcase_01 AC 1,173 ms
155,776 KB
testcase_02 AC 1,286 ms
156,416 KB
testcase_03 AC 1,123 ms
155,776 KB
testcase_04 AC 1,151 ms
155,264 KB
testcase_05 AC 1,162 ms
156,160 KB
testcase_06 AC 1,270 ms
155,648 KB
testcase_07 AC 1,283 ms
156,544 KB
testcase_08 AC 903 ms
154,240 KB
testcase_09 AC 886 ms
154,240 KB
testcase_10 AC 919 ms
154,240 KB
testcase_11 AC 893 ms
154,624 KB
testcase_12 AC 912 ms
154,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import deque, Counter
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 63 - 1
mod = 998244353
maxi = 10 ** 7
prime = [True] * (maxi)
prime[0] = prime[1] = False

for i in range(2, maxi):
    if prime[i]:
        for j in range(2 * i, maxi, i):
            prime[j] = False
from math import gcd
for _ in range(ii()):
    a, p = mi()
    if prime[p]:
        print(int(gcd(p, a) == 1))
    else:
        print(-1)
0