結果

問題 No.1140 EXPotentiaLLL!
ユーザー tyawanmusi
提出日時 2020-07-31 21:53:08
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 587 bytes
コンパイル時間 142 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 94,628 KB
最終ジャッジ日時 2024-07-06 17:48:04
合計ジャッジ時間 7,222 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample -- * 1
other TLE * 1 -- * 11
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=sys.stdin.readline

import random

def is_prime(n):
    if n == 2: return True
    if n == 1 or n & 1 == 0: return False

    d = (n - 1) >> 1
    while d & 1 == 0:
        d >>= 1

    for k in range(100):
        a = random.randint(1, n - 1)
        t = d
        y = pow(a, t, n)

        while t != n - 1 and y != 1 and y != n - 1:
            y = (y * y) % n
            t <<= 1

        if y != n - 1 and t & 1 == 0:
            return False

    return True


for _ in range(int(input())):
  a,p=map(int,input().split())
  if is_prime(p):print(1)
  else:print(-1)
0