結果

問題 No.1140 EXPotentiaLLL!
ユーザー titiatitia
提出日時 2020-07-31 21:45:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 509 ms / 2,000 ms
コード長 705 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 195,312 KB
最終ジャッジ日時 2024-07-06 17:29:09
合計ジャッジ時間 7,003 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 470 ms
194,912 KB
testcase_01 AC 458 ms
194,560 KB
testcase_02 AC 444 ms
194,944 KB
testcase_03 AC 409 ms
195,180 KB
testcase_04 AC 368 ms
195,312 KB
testcase_05 AC 430 ms
194,912 KB
testcase_06 AC 442 ms
195,072 KB
testcase_07 AC 509 ms
195,200 KB
testcase_08 AC 235 ms
181,120 KB
testcase_09 AC 227 ms
180,992 KB
testcase_10 AC 238 ms
181,248 KB
testcase_11 AC 227 ms
181,248 KB
testcase_12 AC 240 ms
181,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

def calc(A,P):
    ANS=1
    for i in range(1,P+1):
        ANS*=i
    return pow(A,ANS,P)

import math
x=5*10**6+10
L=math.floor(math.sqrt(x)) # 平方根を求める

Primelist=[i for i in range(x+1)]
Primelist[1]=0 # 1は素数でないので0にする.
 
for i in Primelist:
    if i>L:
        break
    if i==0:
        continue
    for j in range(2*i,x+1,i):
        Primelist[j]=0

Primes=[Primelist[j] for j in range(x+1) if Primelist[j]!=0]
S=set(Primes)

T=int(input())
for tests in range(T):
    A,P=map(int,input().split())

    if P in S:
        if A%P==0:
            print(0)
        else:
            print(1)
    else:
        print(-1)
    
    
0