結果

問題 No.1140 EXPotentiaLLL!
ユーザー zkouzkou
提出日時 2020-07-31 21:34:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 586 ms / 2,000 ms
コード長 397 bytes
コンパイル時間 303 ms
コンパイル使用メモリ 82,564 KB
実行使用メモリ 116,480 KB
最終ジャッジ日時 2024-07-06 16:51:31
合計ジャッジ時間 8,505 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 565 ms
116,480 KB
testcase_01 AC 556 ms
116,164 KB
testcase_02 AC 531 ms
116,480 KB
testcase_03 AC 515 ms
115,584 KB
testcase_04 AC 483 ms
115,200 KB
testcase_05 AC 541 ms
115,968 KB
testcase_06 AC 536 ms
116,116 KB
testcase_07 AC 586 ms
115,968 KB
testcase_08 AC 322 ms
113,152 KB
testcase_09 AC 314 ms
113,152 KB
testcase_10 AC 308 ms
113,152 KB
testcase_11 AC 311 ms
113,404 KB
testcase_12 AC 317 ms
113,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.buffer.readline

table_len = 5000005
table = [True] * table_len
table[0] = False
table[1] = False
for i in range(2, table_len):
    if table[i]:
        for j in range(2*i, table_len, i):
            table[j] = False

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