結果

問題 No.1140 EXPotentiaLLL!
ユーザー lloyzlloyz
提出日時 2022-05-29 14:04:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 675 ms / 2,000 ms
コード長 451 bytes
コンパイル時間 315 ms
コンパイル使用メモリ 82,556 KB
実行使用メモリ 117,040 KB
最終ジャッジ日時 2024-09-20 23:56:07
合計ジャッジ時間 10,091 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 639 ms
116,924 KB
testcase_01 AC 655 ms
115,972 KB
testcase_02 AC 637 ms
117,040 KB
testcase_03 AC 600 ms
115,988 KB
testcase_04 AC 550 ms
115,612 KB
testcase_05 AC 634 ms
116,100 KB
testcase_06 AC 627 ms
116,080 KB
testcase_07 AC 675 ms
116,848 KB
testcase_08 AC 407 ms
114,724 KB
testcase_09 AC 404 ms
114,812 KB
testcase_10 AC 409 ms
114,604 KB
testcase_11 AC 404 ms
114,796 KB
testcase_12 AC 404 ms
115,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

IsPrime = [True for _ in range(5 * 10**6 + 1)]
IsPrime[0] = IsPrime[1] = False
for i in range(2, 5 * 10**6 + 1):
    if IsPrime[i]:
        for j in range(i + i, 5 * 10**6 + 1, i):
            IsPrime[j] = False

t = int(input())
for _ in range(t):
    a, p = map(int, input().split())
    if IsPrime[p]:
        if a % p == 0:
            print(0)
        else:
            print(1)
    else:
        print(-1)
0