結果

問題 No.1140 EXPotentiaLLL!
ユーザー irumo8202irumo8202
提出日時 2022-01-30 23:19:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,368 ms / 2,000 ms
コード長 431 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 82,816 KB
実行使用メモリ 115,456 KB
最終ジャッジ日時 2024-06-11 08:27:37
合計ジャッジ時間 15,725 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,368 ms
115,456 KB
testcase_01 AC 1,305 ms
115,456 KB
testcase_02 AC 1,302 ms
115,376 KB
testcase_03 AC 1,149 ms
115,456 KB
testcase_04 AC 1,007 ms
115,200 KB
testcase_05 AC 1,333 ms
115,328 KB
testcase_06 AC 1,262 ms
115,200 KB
testcase_07 AC 1,354 ms
115,328 KB
testcase_08 AC 242 ms
111,872 KB
testcase_09 AC 241 ms
112,608 KB
testcase_10 AC 261 ms
112,384 KB
testcase_11 AC 247 ms
112,000 KB
testcase_12 AC 241 ms
112,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())

limit = 5000000
is_prime = [True] * (limit + 1)
is_prime[0] = False
is_prime[1] = False

for p in range(0, limit + 1):
    if not is_prime[p]:
        continue
    for i in range(p * p, limit + 1, p):
        is_prime[i] = False


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