結果

問題 No.1140 EXPotentiaLLL!
ユーザー dangodango
提出日時 2023-06-18 21:44:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 632 ms / 2,000 ms
コード長 317 bytes
コンパイル時間 277 ms
コンパイル使用メモリ 82,352 KB
実行使用メモリ 117,392 KB
最終ジャッジ日時 2024-06-26 08:56:19
合計ジャッジ時間 10,177 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 599 ms
116,692 KB
testcase_01 AC 599 ms
116,736 KB
testcase_02 AC 590 ms
117,392 KB
testcase_03 AC 558 ms
116,224 KB
testcase_04 AC 500 ms
116,028 KB
testcase_05 AC 597 ms
116,064 KB
testcase_06 AC 570 ms
116,096 KB
testcase_07 AC 632 ms
116,992 KB
testcase_08 AC 339 ms
113,032 KB
testcase_09 AC 341 ms
113,480 KB
testcase_10 AC 332 ms
113,408 KB
testcase_11 AC 348 ms
112,896 KB
testcase_12 AC 352 ms
113,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
prime = [1] * 5000001
prime[0] = prime[1] = 0
for i in range(2, 5000001):
  if prime[i]:
    for j in range(2 * i, 5000001, i): prime[j] = 0
for _ in range(int(sys.stdin.readline())):
  A, P = map(int, sys.stdin.readline().split())
  if prime[P]:
    if A % P: print(1)
    else: print(0)
  else: print(-1)
0