結果

問題 No.1140 EXPotentiaLLL!
ユーザー convexineqconvexineq
提出日時 2021-05-10 06:51:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 606 ms / 2,000 ms
コード長 544 bytes
コンパイル時間 311 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 209,280 KB
最終ジャッジ日時 2024-09-19 11:16:10
合計ジャッジ時間 8,848 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 572 ms
209,024 KB
testcase_01 AC 579 ms
209,280 KB
testcase_02 AC 562 ms
209,128 KB
testcase_03 AC 537 ms
208,816 KB
testcase_04 AC 492 ms
208,916 KB
testcase_05 AC 575 ms
209,112 KB
testcase_06 AC 562 ms
209,024 KB
testcase_07 AC 606 ms
209,248 KB
testcase_08 AC 329 ms
201,108 KB
testcase_09 AC 333 ms
201,216 KB
testcase_10 AC 331 ms
201,056 KB
testcase_11 AC 333 ms
201,216 KB
testcase_12 AC 322 ms
201,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def Eratosthenes(N): #N以下の素数のリストを返す
    N+=1
    is_prime_list = [True]*N
    m = int(N**0.5)+1
    for i in range(3,m,2):
        if is_prime_list[i]:
            is_prime_list[i*i::2*i]=[False]*((N-i*i-1)//(2*i)+1)
    return [2] + [i for i in range(3,N,2) if is_prime_list[i]]

N = 5*10**6
ok = [0]*(N+1)
for i in Eratosthenes(N):
    ok[i] = 1

import sys

T = int(input())
for _ in range(T):
    a,p = map(int,sys.stdin.readline().split())
    if ok[p]==0:
        print(-1)
    else:
        print(1 if a%p else 0)
0