結果

問題 No.1140 EXPotentiaLLL!
ユーザー qibqib
提出日時 2022-11-19 19:21:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,716 ms / 2,000 ms
コード長 386 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 82,524 KB
実行使用メモリ 115,952 KB
最終ジャッジ日時 2024-09-21 01:06:51
合計ジャッジ時間 17,660 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,635 ms
115,900 KB
testcase_01 AC 1,602 ms
115,696 KB
testcase_02 AC 1,596 ms
115,568 KB
testcase_03 AC 1,408 ms
115,920 KB
testcase_04 AC 1,177 ms
115,572 KB
testcase_05 AC 1,552 ms
115,952 KB
testcase_06 AC 1,535 ms
115,804 KB
testcase_07 AC 1,716 ms
115,744 KB
testcase_08 AC 404 ms
114,896 KB
testcase_09 AC 416 ms
114,884 KB
testcase_10 AC 408 ms
114,892 KB
testcase_11 AC 415 ms
115,008 KB
testcase_12 AC 403 ms
114,784 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

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