結果

問題 No.1140 EXPotentiaLLL!
ユーザー qibqib
提出日時 2022-11-19 19:23:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 846 ms / 2,000 ms
コード長 427 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 164,136 KB
最終ジャッジ日時 2024-09-21 01:07:54
合計ジャッジ時間 10,175 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 732 ms
155,924 KB
testcase_01 AC 714 ms
155,876 KB
testcase_02 AC 740 ms
164,136 KB
testcase_03 AC 660 ms
146,364 KB
testcase_04 AC 597 ms
137,188 KB
testcase_05 AC 724 ms
155,984 KB
testcase_06 AC 731 ms
151,588 KB
testcase_07 AC 846 ms
159,032 KB
testcase_08 AC 360 ms
114,868 KB
testcase_09 AC 343 ms
115,328 KB
testcase_10 AC 341 ms
114,944 KB
testcase_11 AC 337 ms
115,004 KB
testcase_12 AC 344 ms
114,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

t = int(input())

m = 5000000

prime = [True for _ in range(m + 1)]
prime[1] = False

for x in range(2, m + 1):
  if not prime[x]:
    continue
  prime[x] = True
  for y in range(2 * x, m + 1, x):
    prime[y] = False

ans = []
for _ in range(t):
  a, p = map(int, input().split())
  if not prime[p]:
    ans.append(-1)
  elif math.gcd(a, p) == 1:
    ans.append(1)
  else:
    ans.append(0)

print(*ans, sep='\n')
0