結果

問題 No.1140 EXPotentiaLLL!
ユーザー c-yanc-yan
提出日時 2020-08-03 04:57:16
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 702 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 65,972 KB
最終ジャッジ日時 2024-07-22 07:35:28
合計ジャッジ時間 22,467 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,671 ms
65,904 KB
testcase_01 AC 1,644 ms
65,732 KB
testcase_02 AC 1,727 ms
65,972 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 890 ms
49,924 KB
testcase_09 AC 927 ms
49,848 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 943 ms
49,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def make_prime_table(n):
    sieve = [True] * (n + 1)
    sieve[0] = False
    sieve[1] = False
    for i in range(2, int(n ** 0.5) + 1):
        if not sieve[i]:
            continue
        for j in range(i * i, n + 1, 2 * i):
            sieve[j] = False
    return sieve


def main():
    readline = open(0).readline

    prime_table = make_prime_table(5 * 10 ** 6)

    T = int(readline())
    result = []
    for _ in range(T):
        A, P = map(int, readline().split())
        if not prime_table[P]:
            result.append(-1)
        else:
            if A % P == 0:
                result.append(0)
            else:
                result.append(1)
    print(*result, sep='\n')


main()
0