結果

問題 No.1140 EXPotentiaLLL!
ユーザー butamanbutaman
提出日時 2020-12-14 15:42:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 521 ms / 2,000 ms
コード長 497 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 116,828 KB
最終ジャッジ日時 2024-09-20 00:45:23
合計ジャッジ時間 7,591 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 488 ms
116,056 KB
testcase_01 AC 488 ms
115,840 KB
testcase_02 AC 466 ms
116,828 KB
testcase_03 AC 447 ms
115,808 KB
testcase_04 AC 418 ms
115,488 KB
testcase_05 AC 521 ms
115,840 KB
testcase_06 AC 484 ms
115,712 KB
testcase_07 AC 505 ms
116,352 KB
testcase_08 AC 270 ms
113,376 KB
testcase_09 AC 285 ms
113,152 KB
testcase_10 AC 286 ms
113,380 KB
testcase_11 AC 277 ms
113,532 KB
testcase_12 AC 274 ms
113,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
import sys


def input():
   return sys.stdin.buffer.readline()[:-1]

MAXX = 5*10**6 + 5

isprime = [1]*MAXX
isprime[0] = isprime[1] = 0
#theratos
for num in range(2, MAXX):
    if isprime[num]:
        for k in range(num*2, MAXX, num):
            isprime[k] = 0

T = int(input())
for tt in range(T):
    A, P = map(int, input().split())
    if isprime[P]:
        if A % P == 0:
            print(0)
        else:
            #ferma
            print(1)
    else:
        print(-1)

0