結果

問題 No.1140 EXPotentiaLLL!
ユーザー kojihashimoto-kobekojihashimoto-kobe
提出日時 2022-05-15 20:20:34
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 438 bytes
コンパイル時間 401 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 115,664 KB
最終ジャッジ日時 2024-09-13 06:43:55
合計ジャッジ時間 16,288 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,478 ms
115,584 KB
testcase_01 AC 1,495 ms
115,000 KB
testcase_02 AC 1,453 ms
115,664 KB
testcase_03 AC 1,328 ms
115,336 KB
testcase_04 AC 1,063 ms
115,072 KB
testcase_05 AC 1,489 ms
115,048 KB
testcase_06 WA -
testcase_07 AC 1,533 ms
115,200 KB
testcase_08 AC 319 ms
98,432 KB
testcase_09 AC 315 ms
99,328 KB
testcase_10 AC 315 ms
99,072 KB
testcase_11 WA -
testcase_12 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

t = int(input())
#エラトステネスの篩で素数を列挙
x = [0]*(5*10**6+1)
for i in range(2,5*10**6+1):
  if x[i] == 0:
    I = i
    j = 2
    while I*j <= 5*10**6:
      x[I*j] = 1
      j += 1

for _ in range(t):
  a,p = map(int, input().split())
  if x[p] == 1:
    print(-1)
  else:
    #aがpの倍数なら当然答えは0
    if a%p == 0:
      print(0)
    else:
      #フェルマーの定理に注目
      print(1)
0