結果

問題 No.1140 EXPotentiaLLL!
ユーザー mlihua09mlihua09
提出日時 2020-09-17 02:35:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,274 ms / 2,000 ms
コード長 419 bytes
コンパイル時間 358 ms
コンパイル使用メモリ 82,640 KB
実行使用メモリ 155,820 KB
最終ジャッジ日時 2024-06-22 03:56:24
合計ジャッジ時間 12,802 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,186 ms
155,072 KB
testcase_01 AC 1,274 ms
155,344 KB
testcase_02 AC 1,205 ms
154,428 KB
testcase_03 AC 1,002 ms
155,820 KB
testcase_04 AC 825 ms
154,908 KB
testcase_05 AC 1,187 ms
154,468 KB
testcase_06 AC 1,147 ms
155,220 KB
testcase_07 AC 1,202 ms
155,776 KB
testcase_08 AC 183 ms
139,428 KB
testcase_09 AC 180 ms
138,900 KB
testcase_10 AC 172 ms
139,344 KB
testcase_11 AC 173 ms
137,536 KB
testcase_12 AC 179 ms
138,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


P = [0] + [0] + [1] * (5 * 10 ** 6 - 1)

for i in range(2, 2500):
    
    if P[i]:
        
        for j in range(2 * i, 5 * 10 ** 6 + 1, i):
            
            P[j] = 0
            
for _ in range(int(input())):
    
    a, p = map(int, input().split())
    
    if P[p]:
        
        if a % p:
            print(1)
            
        else:
            print(0)
            
    else:
        print(-1)
0