結果

問題 No.1140 EXPotentiaLLL!
ユーザー ntudantuda
提出日時 2024-06-05 22:12:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,654 ms / 2,000 ms
コード長 374 bytes
コンパイル時間 574 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 115,712 KB
最終ジャッジ日時 2024-06-05 22:12:28
合計ジャッジ時間 17,985 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,500 ms
115,584 KB
testcase_01 AC 1,521 ms
115,584 KB
testcase_02 AC 1,494 ms
115,456 KB
testcase_03 AC 1,328 ms
115,712 KB
testcase_04 AC 1,128 ms
115,328 KB
testcase_05 AC 1,577 ms
115,328 KB
testcase_06 AC 1,490 ms
115,072 KB
testcase_07 AC 1,654 ms
115,072 KB
testcase_08 AC 362 ms
113,152 KB
testcase_09 AC 387 ms
112,896 KB
testcase_10 AC 363 ms
112,896 KB
testcase_11 AC 367 ms
112,768 KB
testcase_12 AC 356 ms
113,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = 5 * 10 ** 6
prime = [True] * (N + 1)
prime[0] = prime[1] = False
for i in range(2, N + 1):
    if prime[i]:
        for j in range(2 * i, N + 1, i):
            prime[j] = False

for _ in range(int(input())):
    A, P = map(int, input().split())
    if prime[P]:
        if A % P == 0:
            print(0)
        else:
            print(1)
    else:
        print(-1)
0