結果

問題 No.1140 EXPotentiaLLL!
ユーザー qumazakiqumazaki
提出日時 2020-09-08 17:37:26
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 872 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 298,048 KB
最終ジャッジ日時 2024-05-07 09:34:55
合計ジャッジ時間 7,364 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 468 ms
251,404 KB
testcase_01 RE -
testcase_02 AC 475 ms
275,896 KB
testcase_03 AC 381 ms
248,652 KB
testcase_04 AC 359 ms
263,512 KB
testcase_05 AC 449 ms
260,972 KB
testcase_06 AC 410 ms
269,608 KB
testcase_07 AC 499 ms
298,048 KB
testcase_08 AC 182 ms
149,248 KB
testcase_09 AC 182 ms
148,992 KB
testcase_10 AC 183 ms
149,248 KB
testcase_11 AC 185 ms
149,504 KB
testcase_12 AC 178 ms
149,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines

def sieve(n):
    if( n <= 1):
        return []
    elif(n==2):
        return [2]

    primes = [2]
    len_list = (n+1)//2
    len_sqrt = int(len_list**0.5) + 1
    flags = [True] * len_list
    flags[0] = False
    for i in range(len_sqrt):
        if(flags[i]):
            start = ((i*2+1)**2)//2
            for j in range( start, len_list, i*2+1):
                flags[j] = False
    return [2] + [i*2+1 for i in range(len_list) if flags[i]]

t = int(readline())
data = list(map(int,read().split()))

primes = sieve(5*10**6)
nums = [-1]*(5*10**6)
for pi in primes:
    nums[pi]=1

ans = []
it = iter(data)
for a,p in zip(it,it):
    if(nums[p]==-1):
        ans.append(-1)
    else:
        ans.append(1*(a%p > 0))

print('\n'.join(map(str,ans)))
0