結果

問題 No.1140 EXPotentiaLLL!
ユーザー MineMine
提出日時 2021-01-28 18:40:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 730 ms / 2,000 ms
コード長 735 bytes
コンパイル時間 1,007 ms
コンパイル使用メモリ 86,520 KB
実行使用メモリ 118,092 KB
最終ジャッジ日時 2023-09-08 09:51:36
合計ジャッジ時間 11,087 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 690 ms
117,688 KB
testcase_01 AC 699 ms
117,340 KB
testcase_02 AC 662 ms
117,700 KB
testcase_03 AC 661 ms
116,672 KB
testcase_04 AC 613 ms
116,980 KB
testcase_05 AC 711 ms
117,128 KB
testcase_06 AC 701 ms
116,860 KB
testcase_07 AC 730 ms
118,092 KB
testcase_08 AC 454 ms
115,368 KB
testcase_09 AC 467 ms
115,300 KB
testcase_10 AC 464 ms
115,304 KB
testcase_11 AC 468 ms
115,520 KB
testcase_12 AC 463 ms
115,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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