結果

問題 No.1140 EXPotentiaLLL!
ユーザー butamanbutaman
提出日時 2020-12-14 15:40:27
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 469 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 82,240 KB
実行使用メモリ 116,992 KB
最終ジャッジ日時 2024-09-20 00:44:42
合計ジャッジ時間 7,247 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 449 ms
116,636 KB
testcase_01 AC 454 ms
115,712 KB
testcase_02 AC 420 ms
116,280 KB
testcase_03 AC 388 ms
115,792 KB
testcase_04 AC 364 ms
115,644 KB
testcase_05 AC 440 ms
115,712 KB
testcase_06 WA -
testcase_07 AC 471 ms
116,992 KB
testcase_08 AC 225 ms
113,580 KB
testcase_09 AC 243 ms
113,024 KB
testcase_10 AC 252 ms
113,536 KB
testcase_11 WA -
testcase_12 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
import sys


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

MAXX = 5*10**6 + 5

isprime = [1]*MAXX
#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