結果

問題 No.1140 EXPotentiaLLL!
ユーザー pluto77pluto77
提出日時 2022-06-14 14:31:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 656 ms / 2,000 ms
コード長 324 bytes
コンパイル時間 451 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 117,120 KB
最終ジャッジ日時 2024-10-02 09:50:28
合計ジャッジ時間 9,554 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 552 ms
117,008 KB
testcase_01 AC 578 ms
116,224 KB
testcase_02 AC 569 ms
117,120 KB
testcase_03 AC 561 ms
116,224 KB
testcase_04 AC 511 ms
115,584 KB
testcase_05 AC 604 ms
116,228 KB
testcase_06 AC 606 ms
116,224 KB
testcase_07 AC 656 ms
116,736 KB
testcase_08 AC 340 ms
113,520 KB
testcase_09 AC 352 ms
113,024 KB
testcase_10 AC 352 ms
113,280 KB
testcase_11 AC 353 ms
113,024 KB
testcase_12 AC 358 ms
113,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki1140
import sys
input=sys.stdin.readline
prime=[1]*5000001
prime[0]=prime[1]=0
for i in range(2,5000001):
  if prime[i]:
    for j in range(i+i,5000001,i):
     prime[j]=0
for _ in range(int(input())):
  a,p=map(int,input().split())
  if prime[p]:
    if a%p:
     print(1)
    else:
     print(0)
  else:
   print(-1)
0