結果
| 問題 | No.1140 EXPotentiaLLL! |
| コンテスト | |
| ユーザー |
uni_python
|
| 提出日時 | 2020-08-03 20:44:18 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 784 bytes |
| コンパイル時間 | 220 ms |
| コンパイル使用メモリ | 81,592 KB |
| 実行使用メモリ | 116,464 KB |
| 最終ジャッジ日時 | 2024-09-13 15:40:40 |
| 合計ジャッジ時間 | 9,244 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 1 WA * 11 |
ソースコード
import sys
input=sys.stdin.readline
def I(): return int(input())
def MI(): return map(int, input().split())
def LI(): return list(map(int, input().split()))
def main():
mod=10**9+7
T=I()
#nまでの素数を列挙(n loglogn)
n = 5*(10**6)+10
#is_prime[i]にはi-1が素数か否かを示すboolが入る,[0]に1の素数判定がある.
is_prime = [True]*(n+1)
is_prime[0] = False
for i in range(2, n+1):
if is_prime[i-1]:
j = 2 * i
while j <= n:
is_prime[j-1] = False
j += i
for i in range(T):
A,P=MI()
if is_prime[P+1]==1:
if A%P==0:
print(0)
else:
print(1)
else:
print(-1)
main()
uni_python