結果

問題 No.1140 EXPotentiaLLL!
ユーザー kojihashimoto-kobekojihashimoto-kobe
提出日時 2022-05-15 20:22:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,466 ms / 2,000 ms
コード長 447 bytes
コンパイル時間 352 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 115,620 KB
最終ジャッジ日時 2024-09-13 06:46:27
合計ジャッジ時間 15,871 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,453 ms
115,528 KB
testcase_01 AC 1,466 ms
115,424 KB
testcase_02 AC 1,439 ms
115,304 KB
testcase_03 AC 1,217 ms
115,272 KB
testcase_04 AC 1,012 ms
114,980 KB
testcase_05 AC 1,427 ms
115,008 KB
testcase_06 AC 1,439 ms
115,328 KB
testcase_07 AC 1,388 ms
115,620 KB
testcase_08 AC 259 ms
99,344 KB
testcase_09 AC 248 ms
99,104 KB
testcase_10 AC 269 ms
99,852 KB
testcase_11 AC 234 ms
99,780 KB
testcase_12 AC 232 ms
100,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t = int(input())
#エラトステネスの篩で素数を列挙
x = [0]*(5*10**6+1)
x[1] = 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