結果

問題 No.1140 EXPotentiaLLL!
ユーザー raven7959raven7959
提出日時 2021-10-15 18:20:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 723 ms / 2,000 ms
コード長 424 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 116,992 KB
最終ジャッジ日時 2024-09-17 16:49:54
合計ジャッジ時間 10,169 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 673 ms
116,644 KB
testcase_01 AC 692 ms
116,096 KB
testcase_02 AC 680 ms
116,992 KB
testcase_03 AC 639 ms
115,840 KB
testcase_04 AC 596 ms
115,968 KB
testcase_05 AC 674 ms
115,968 KB
testcase_06 AC 677 ms
116,096 KB
testcase_07 AC 723 ms
116,736 KB
testcase_08 AC 388 ms
112,768 KB
testcase_09 AC 386 ms
113,024 KB
testcase_10 AC 380 ms
113,280 KB
testcase_11 AC 388 ms
113,536 KB
testcase_12 AC 383 ms
112,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N=5*10**6
isprime=[True]*(N+1) #isprime[i]はiが素数かどうか
isprime[0]=False
isprime[1]=False
for p in range(2,N+1):
  if isprime[p]:
    for q in range(2*p,N+1,p):
      isprime[q]=False

T=int(input())
for _ in range(T):
    A,P=map(int,input().split())
    if isprime[P]:
        if A%P==0:
            print(0)
        else:
            print(1)
    else:
        print(-1)
0