結果

問題 No.1140 EXPotentiaLLL!
ユーザー qumazakiqumazaki
提出日時 2020-09-08 17:38:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 506 ms / 2,000 ms
コード長 874 bytes
コンパイル時間 250 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 297,780 KB
最終ジャッジ日時 2024-05-07 09:36:14
合計ジャッジ時間 7,190 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 506 ms
251,388 KB
testcase_01 AC 467 ms
251,400 KB
testcase_02 AC 471 ms
275,864 KB
testcase_03 AC 377 ms
248,596 KB
testcase_04 AC 359 ms
263,248 KB
testcase_05 AC 471 ms
260,840 KB
testcase_06 AC 415 ms
269,604 KB
testcase_07 AC 500 ms
297,780 KB
testcase_08 AC 188 ms
148,736 KB
testcase_09 AC 188 ms
148,992 KB
testcase_10 AC 196 ms
148,608 KB
testcase_11 AC 195 ms
148,608 KB
testcase_12 AC 192 ms
148,736 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+1)
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