結果

問題 No.1140 EXPotentiaLLL!
ユーザー O2MTO2MT
提出日時 2020-12-06 13:38:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,982 ms / 2,000 ms
コード長 301 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 116,100 KB
最終ジャッジ日時 2024-09-17 12:58:11
合計ジャッジ時間 20,788 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,746 ms
115,564 KB
testcase_01 AC 1,805 ms
115,616 KB
testcase_02 AC 1,982 ms
116,100 KB
testcase_03 AC 1,612 ms
115,792 KB
testcase_04 AC 1,379 ms
115,456 KB
testcase_05 AC 1,728 ms
115,580 KB
testcase_06 AC 1,631 ms
115,480 KB
testcase_07 AC 1,724 ms
115,484 KB
testcase_08 AC 755 ms
114,444 KB
testcase_09 AC 727 ms
114,688 KB
testcase_10 AC 736 ms
114,432 KB
testcase_11 AC 723 ms
114,432 KB
testcase_12 AC 725 ms
114,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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