結果

問題 No.1140 EXPotentiaLLL!
ユーザー ああいいああいい
提出日時 2021-12-23 22:47:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,680 ms / 2,000 ms
コード長 418 bytes
コンパイル時間 310 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 169,904 KB
最終ジャッジ日時 2024-09-18 18:22:27
合計ジャッジ時間 17,356 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,548 ms
169,396 KB
testcase_01 AC 1,551 ms
169,600 KB
testcase_02 AC 1,524 ms
169,904 KB
testcase_03 AC 1,434 ms
169,548 KB
testcase_04 AC 1,153 ms
169,600 KB
testcase_05 AC 1,615 ms
169,728 KB
testcase_06 AC 1,509 ms
169,728 KB
testcase_07 AC 1,680 ms
169,600 KB
testcase_08 AC 388 ms
155,648 KB
testcase_09 AC 387 ms
155,648 KB
testcase_10 AC 394 ms
155,776 KB
testcase_11 AC 371 ms
156,056 KB
testcase_12 AC 363 ms
155,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())

C = 5 * 10 ** 6
dat = [0] * C
prime = set()
prime.add(2)
for i in range(4,C,2):
    dat[i] = 1
i = 3
while i < C:
    if dat[i] == 0:
        prime.add(i)
        j = 2 * i
        while j < C:
            dat[j] = 1
            j += i
    i += 2
for _ in range(T):
    a,p = map(int,input().split())
    if p in prime:
        if a % p == 0:print(0)
        else:print(1)
    else:
        print(-1)
0