結果

問題 No.1140 EXPotentiaLLL!
ユーザー Chihaya_chanChihaya_chan
提出日時 2020-08-10 02:02:44
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 643 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,064 KB
実行使用メモリ 331,000 KB
最終ジャッジ日時 2024-10-06 00:52:01
合計ジャッジ時間 24,998 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 1,992 ms
330,096 KB
testcase_02 TLE -
testcase_03 WA -
testcase_04 WA -
testcase_05 TLE -
testcase_06 WA -
testcase_07 TLE -
testcase_08 AC 1,551 ms
330,368 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

class Primes():
    def __init__(self, N):
        self.N = N
        self.prime = {i for i in range(2, self.N+1)}
        for i in range(2, self.N+1):
            if i in self.prime:
                for j in range(i*2, self.N+1, i):
                    if j in self.prime:
                        self.prime.remove(j)

    def show_primes(self):
        return self.prime


Prime_table = Primes(5*10**6).show_primes()
T = int(input())
que = [tuple(map(int, input().split())) for i in range(T)]
for A, P in que:
    if A in Prime_table:
        if A % P == 0:
            print(0)
        else:
            print(1)
    else:
        print(-1)
0