結果

問題 No.1140 EXPotentiaLLL!
ユーザー tyawanmusityawanmusi
提出日時 2020-07-31 23:57:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 637 ms / 2,000 ms
コード長 291 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 81,840 KB
実行使用メモリ 117,368 KB
最終ジャッジ日時 2024-07-06 22:21:53
合計ジャッジ時間 8,908 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 593 ms
116,608 KB
testcase_01 AC 591 ms
116,120 KB
testcase_02 AC 572 ms
117,368 KB
testcase_03 AC 546 ms
116,352 KB
testcase_04 AC 509 ms
115,968 KB
testcase_05 AC 597 ms
116,224 KB
testcase_06 AC 594 ms
116,480 KB
testcase_07 AC 637 ms
116,864 KB
testcase_08 AC 347 ms
112,768 KB
testcase_09 AC 343 ms
112,928 KB
testcase_10 AC 347 ms
113,408 KB
testcase_11 AC 345 ms
113,152 KB
testcase_12 AC 342 ms
113,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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