結果

問題 No.1140 EXPotentiaLLL!
ユーザー syunsukesyunsuke
提出日時 2020-09-16 22:26:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 606 ms / 2,000 ms
コード長 483 bytes
コンパイル時間 264 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 117,128 KB
最終ジャッジ日時 2024-06-22 03:40:36
合計ジャッジ時間 8,533 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 556 ms
117,104 KB
testcase_01 AC 569 ms
116,168 KB
testcase_02 AC 573 ms
117,092 KB
testcase_03 AC 524 ms
116,280 KB
testcase_04 AC 478 ms
115,736 KB
testcase_05 AC 551 ms
116,540 KB
testcase_06 AC 527 ms
116,328 KB
testcase_07 AC 606 ms
117,128 KB
testcase_08 AC 318 ms
114,780 KB
testcase_09 AC 331 ms
115,228 KB
testcase_10 AC 330 ms
114,776 KB
testcase_11 AC 326 ms
114,868 KB
testcase_12 AC 336 ms
114,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

P=[0 for i in range(5*(10**6)+1)]
P[0]=1
P[1]=1
#print(len(P))
for i in range(2,len(P)):
    if P[i]==0:
        for j in range(2,len(P)):
            if i*j>5*(10**6):
                break
            else:
                P[i*j]=1
#print(P[:20])
import sys
input=sys.stdin.readline
Q=int(input())
for q in range(Q):
    A,T=map(int,input().split())
    if P[T]==0:
        if A%T==0:
            print(0)
        else:
            print(1)
    else:
        print(-1)
            
0