結果

問題 No.1140 EXPotentiaLLL!
ユーザー ああいいああいい
提出日時 2021-12-23 22:53:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 809 ms / 2,000 ms
コード長 416 bytes
コンパイル時間 226 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 169,728 KB
最終ジャッジ日時 2024-09-18 18:28:54
合計ジャッジ時間 10,605 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 695 ms
169,472 KB
testcase_01 AC 686 ms
169,472 KB
testcase_02 AC 687 ms
169,600 KB
testcase_03 AC 658 ms
169,216 KB
testcase_04 AC 555 ms
169,472 KB
testcase_05 AC 632 ms
169,088 KB
testcase_06 AC 710 ms
169,728 KB
testcase_07 AC 809 ms
169,216 KB
testcase_08 AC 429 ms
154,624 KB
testcase_09 AC 424 ms
154,752 KB
testcase_10 AC 428 ms
154,496 KB
testcase_11 AC 427 ms
154,240 KB
testcase_12 AC 425 ms
154,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
r = sys.stdin
T = int(r.readline())

C = 5 * 10 ** 6
dat = [0] * C
prime = set()
prime.add(2)

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,r.readline().split())
    if p in prime:
        if a % p == 0:print(0)
        else:print(1)
    else:
        print(-1)
0