結果

問題 No.1140 EXPotentiaLLL!
ユーザー Chihaya_chanChihaya_chan
提出日時 2020-08-10 02:11:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 948 ms / 2,000 ms
コード長 483 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 82,080 KB
実行使用メモリ 159,992 KB
最終ジャッジ日時 2024-10-06 00:52:45
合計ジャッジ時間 11,595 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 948 ms
159,992 KB
testcase_01 AC 938 ms
159,376 KB
testcase_02 AC 897 ms
159,700 KB
testcase_03 AC 762 ms
150,644 KB
testcase_04 AC 655 ms
142,300 KB
testcase_05 AC 796 ms
158,636 KB
testcase_06 AC 796 ms
156,756 KB
testcase_07 AC 878 ms
159,552 KB
testcase_08 AC 353 ms
114,804 KB
testcase_09 AC 363 ms
114,984 KB
testcase_10 AC 360 ms
114,708 KB
testcase_11 AC 351 ms
114,828 KB
testcase_12 AC 345 ms
114,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

is_Prime = [True for i in range(5*10**6+1)]

is_Prime[0] = is_Prime[1] = False
for i in range(2, 5*10**6+1):
    if is_Prime[i] == False:
        continue
    for j in range(2, 5*10**6+1):
        if i*j > 5*10**6:
            break
        is_Prime[i*j] = False

T = int(input())
que = [tuple(map(int, input().split())) for i in range(T)]
for A, P in que:
    if is_Prime[P]:
        if A % P == 0:
            print(0)
        else:
            print(1)
    else:
        print(-1)
0