結果

問題 No.1140 EXPotentiaLLL!
コンテスト
ユーザー Mine
提出日時 2021-01-28 18:40:45
言語 PyPy3
(7.3.17)
コンパイル:
pypy3 -mpy_compile _filename_
実行:
pypy3 _filename_
結果
AC  
実行時間 420 ms / 2,000 ms
コード長 735 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 116 ms
コンパイル使用メモリ 85,008 KB
実行使用メモリ 121,092 KB
最終ジャッジ日時 2026-03-12 16:33:28
合計ジャッジ時間 7,194 ms
ジャッジサーバーID
(参考情報)
judge2_0 / judge3_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 12
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

import sys
input = sys.stdin.readline

def main():
    def Sieve_of_Eratosthenes(maxA):
        lst = [None]*(maxA+1)
        lst[0] = False
        lst[1] = False
        for i in range(2, maxA+1):
            if lst[i] is None:
                for g in range(i, maxA+1, i):
                    if lst[g] is None:
                        lst[g] = False
                lst[i] = True
        return lst


    maxA = 5*10**6
    lst = Sieve_of_Eratosthenes(maxA)
    t = int(input())
    for _ in range(t):
        a, p = map(int, input().split())
        if lst[p]:
            if a % p != 0:
                print(1)
            else:
                print(0)
        else:
            print(-1)

if __name__ == '__main__':
    main()
0