結果

問題 No.1140 EXPotentiaLLL!
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2020-08-05 23:52:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,292 ms / 2,000 ms
コード長 339 bytes
コンパイル時間 327 ms
コンパイル使用メモリ 81,756 KB
実行使用メモリ 117,032 KB
最終ジャッジ日時 2024-09-18 18:12:23
合計ジャッジ時間 16,525 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,037 ms
117,032 KB
testcase_01 AC 1,045 ms
116,288 KB
testcase_02 AC 1,083 ms
116,504 KB
testcase_03 AC 1,099 ms
115,840 KB
testcase_04 AC 1,002 ms
116,296 KB
testcase_05 AC 1,090 ms
116,736 KB
testcase_06 AC 1,292 ms
116,644 KB
testcase_07 AC 1,199 ms
117,012 KB
testcase_08 AC 907 ms
114,696 KB
testcase_09 AC 898 ms
114,432 KB
testcase_10 AC 896 ms
114,560 KB
testcase_11 AC 897 ms
114,728 KB
testcase_12 AC 959 ms
114,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

MA = 5*10**6+1
s = [0]*(MA)

s[1] = 2
for i in range(2,MA):
    for j in range(i,MA,i):
        s[j] += 1
    

t = int(input())
for _ in range(t):
    a,p = map(int,input().split())
    if s[p] == 1:
        if a%p:
            print(1)
        else:
            print(0)
    else:
        print(-1)
0