結果

問題 No.1140 EXPotentiaLLL!
ユーザー irumo8202irumo8202
提出日時 2022-01-30 23:19:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,573 ms / 2,000 ms
コード長 431 bytes
コンパイル時間 322 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 115,712 KB
最終ジャッジ日時 2024-06-11 08:28:54
合計ジャッジ時間 15,628 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,375 ms
115,456 KB
testcase_01 AC 1,353 ms
115,712 KB
testcase_02 AC 1,573 ms
115,328 KB
testcase_03 AC 1,265 ms
115,328 KB
testcase_04 AC 988 ms
115,200 KB
testcase_05 AC 1,402 ms
115,584 KB
testcase_06 AC 1,369 ms
115,328 KB
testcase_07 AC 1,423 ms
115,328 KB
testcase_08 AC 244 ms
112,000 KB
testcase_09 AC 254 ms
112,128 KB
testcase_10 AC 251 ms
111,872 KB
testcase_11 AC 251 ms
112,256 KB
testcase_12 AC 249 ms
112,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())

limit = 5000000
is_prime = [True] * (limit + 1)
is_prime[0] = False
is_prime[1] = False

for p in range(0, limit + 1):
    if not is_prime[p]:
        continue
    for i in range(p * p, limit + 1, p):
        is_prime[i] = False


for i in range(T):
    A, P = map(int, input().split())
    if is_prime[P]:
        if A % P == 0:
            print(0)
        else:
            print(1)
    else:
        print(-1)
0