結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 431 ms
154,724 KB
testcase_01 AC 431 ms
154,040 KB
testcase_02 AC 383 ms
154,420 KB
testcase_03 AC 343 ms
154,432 KB
testcase_04 AC 310 ms
154,620 KB
testcase_05 AC 387 ms
155,920 KB
testcase_06 AC 366 ms
154,488 KB
testcase_07 AC 404 ms
154,648 KB
testcase_08 AC 162 ms
138,712 KB
testcase_09 AC 163 ms
137,876 KB
testcase_10 AC 166 ms
139,416 KB
testcase_11 AC 168 ms
138,296 KB
testcase_12 AC 174 ms
138,396 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
            
import sys 
for _ in range(int(input())):
    
    a, p = map(int, sys.stdin.readline().split())
    
    if P[p]:
        
        if a % p:
            print(1)
            
        else:
            print(0)
            
    else:
        print(-1)
0