結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,483 ms
208,928 KB
testcase_01 AC 1,431 ms
208,896 KB
testcase_02 AC 1,407 ms
209,152 KB
testcase_03 AC 1,198 ms
208,896 KB
testcase_04 AC 1,007 ms
209,152 KB
testcase_05 AC 1,431 ms
208,896 KB
testcase_06 AC 1,341 ms
209,104 KB
testcase_07 AC 1,441 ms
209,024 KB
testcase_08 AC 323 ms
201,344 KB
testcase_09 AC 323 ms
201,344 KB
testcase_10 AC 327 ms
201,324 KB
testcase_11 AC 321 ms
201,344 KB
testcase_12 AC 323 ms
201,088 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

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