結果

問題 No.1140 EXPotentiaLLL!
ユーザー ああいいああいい
提出日時 2021-12-23 22:45:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,522 ms / 2,000 ms
コード長 367 bytes
コンパイル時間 309 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 170,368 KB
最終ジャッジ日時 2024-09-18 18:20:24
合計ジャッジ時間 15,077 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,475 ms
169,728 KB
testcase_01 AC 1,289 ms
169,984 KB
testcase_02 AC 1,346 ms
170,368 KB
testcase_03 AC 1,240 ms
170,240 KB
testcase_04 AC 963 ms
170,112 KB
testcase_05 AC 1,490 ms
170,112 KB
testcase_06 AC 1,266 ms
169,856 KB
testcase_07 AC 1,522 ms
169,856 KB
testcase_08 AC 253 ms
154,624 KB
testcase_09 AC 245 ms
154,240 KB
testcase_10 AC 256 ms
154,796 KB
testcase_11 AC 248 ms
154,880 KB
testcase_12 AC 257 ms
155,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())

C = 5 * 10 ** 6
dat = [0] * C
prime = set()
i = 2
while i < C:
    if dat[i] == 0:
        prime.add(i)
        j = 2 * i
        while j < C:
            dat[j] = 1
            j += i
    i += 1
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