結果

問題 No.1140 EXPotentiaLLL!
ユーザー first_vilfirst_vil
提出日時 2020-12-08 13:02:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 487 ms / 2,000 ms
コード長 490 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 82,508 KB
実行使用メモリ 139,296 KB
最終ジャッジ日時 2024-09-17 14:35:35
合計ジャッジ時間 7,118 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 487 ms
139,080 KB
testcase_01 AC 471 ms
139,108 KB
testcase_02 AC 463 ms
139,296 KB
testcase_03 AC 432 ms
139,160 KB
testcase_04 AC 424 ms
139,232 KB
testcase_05 AC 483 ms
139,244 KB
testcase_06 AC 457 ms
139,012 KB
testcase_07 AC 484 ms
139,264 KB
testcase_08 AC 227 ms
137,648 KB
testcase_09 AC 225 ms
137,940 KB
testcase_10 AC 224 ms
138,000 KB
testcase_11 AC 268 ms
139,148 KB
testcase_12 AC 228 ms
137,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    import sys
    input = sys.stdin.readline

    p=[True]*5000001
    p[0]=p[1]=False
    i=2
    ps=[]
    while i<5000000:
        if p[i]:
            ps.append(i)
            j=i<<1
            while j<=5000000:
                p[j]=False
                j+=i
        i+=1
    
    for _ in range(int(input())):
        a,b=map(int,input().split())
        if p[b]:
            print(1 if a%b else 0)
        else:
            print(-1)
if __name__=='__main__':
    main()
0