結果

問題 No.1140 EXPotentiaLLL!
ユーザー H3PO4H3PO4
提出日時 2020-07-31 21:36:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,861 ms / 2,000 ms
コード長 525 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 87,240 KB
最終ジャッジ日時 2024-07-06 16:56:47
合計ジャッジ時間 22,210 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,727 ms
87,028 KB
testcase_01 AC 1,644 ms
87,216 KB
testcase_02 AC 1,739 ms
87,004 KB
testcase_03 AC 1,514 ms
86,964 KB
testcase_04 AC 1,305 ms
86,820 KB
testcase_05 AC 1,688 ms
87,096 KB
testcase_06 AC 1,647 ms
86,820 KB
testcase_07 AC 1,861 ms
87,240 KB
testcase_08 AC 661 ms
86,700 KB
testcase_09 AC 660 ms
86,952 KB
testcase_10 AC 660 ms
87,044 KB
testcase_11 AC 657 ms
87,220 KB
testcase_12 AC 653 ms
87,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
import sys

input = sys.stdin.readline


def primes_np(n):
    is_prime = np.ones(n + 1, dtype=bool)
    is_prime[0] = False
    is_prime[1] = False
    for i in range(2, int(n ** 0.5) + 1):
        if not is_prime[i]:
            continue
        is_prime[i * 2:n + 1:i] = False
    return np.where(is_prime)[0].tolist()


PR = set(primes_np(5 * 10 ** 6))
T = int(input())
for _ in range(T):
    A, P = map(int, input().split())
    if P in PR:
        print(1 if A % P else 0)
    else:
        print(-1)
0