結果

問題 No.1140 EXPotentiaLLL!
ユーザー rlangevinrlangevin
提出日時 2023-01-02 02:20:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 645 ms / 2,000 ms
コード長 556 bytes
コンパイル時間 368 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 174,208 KB
最終ジャッジ日時 2024-11-27 00:32:22
合計ジャッジ時間 9,874 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 554 ms
173,312 KB
testcase_01 AC 559 ms
174,080 KB
testcase_02 AC 554 ms
174,208 KB
testcase_03 AC 510 ms
174,080 KB
testcase_04 AC 477 ms
174,208 KB
testcase_05 AC 540 ms
174,080 KB
testcase_06 AC 547 ms
174,208 KB
testcase_07 AC 645 ms
174,080 KB
testcase_08 AC 315 ms
158,336 KB
testcase_09 AC 310 ms
158,336 KB
testcase_10 AC 324 ms
157,824 KB
testcase_11 AC 317 ms
158,336 KB
testcase_12 AC 315 ms
158,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline = sys.stdin.readline
from math import *

def Sieve(n):
    lst = [True] * (n + 1)
    S = set()
    for i in range(2, ceil(sqrt(n)) + 1):
        if lst[i]:
            for j in range(2 * i, n + 1, i):
                lst[j] = False
    for i in range(2, n + 1):
        if lst[i]:
            S.add(i)
    return S


T = int(readline())
S = Sieve(5050505)
for _ in range(T):
    A, P = map(int, readline().split())
    if P not in S:
        print(-1)
    else:
        if A % P:
            print(1)
        else:
            print(0)
0