結果

問題 No.1140 EXPotentiaLLL!
ユーザー O2MTO2MT
提出日時 2020-12-06 14:00:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,627 ms / 2,000 ms
コード長 492 bytes
コンパイル時間 304 ms
コンパイル使用メモリ 81,972 KB
実行使用メモリ 183,764 KB
最終ジャッジ日時 2024-09-17 13:03:01
合計ジャッジ時間 15,057 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,424 ms
183,736 KB
testcase_01 AC 1,469 ms
183,420 KB
testcase_02 AC 1,325 ms
183,520 KB
testcase_03 AC 1,165 ms
183,444 KB
testcase_04 AC 925 ms
183,268 KB
testcase_05 AC 1,410 ms
183,764 KB
testcase_06 AC 1,304 ms
183,448 KB
testcase_07 AC 1,627 ms
183,200 KB
testcase_08 AC 289 ms
182,508 KB
testcase_09 AC 294 ms
182,260 KB
testcase_10 AC 284 ms
181,856 KB
testcase_11 AC 285 ms
182,500 KB
testcase_12 AC 284 ms
181,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def eratosthenes_sieve(n):
    table = [0] * (n+1)
    prime_list = []
    for i in range(2, n+1):
        if table[i] == 0:
            prime_list.append(i)
            for j in range(i+i, n+1, i):
                table[j] = 1
    return prime_list

N = 5*(10**6)+1
E = set(eratosthenes_sieve(N))
T = int(input())
for _ in range(T):
    A,P = map(int,input().split())
    if P not in E:
        print(-1)
    else:
        if A%P != 0:
            print(1)
        else:
            print(0)
0