結果

問題 No.1140 EXPotentiaLLL!
ユーザー ntudantuda
提出日時 2024-06-05 22:04:33
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 312 bytes
コンパイル時間 428 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 115,988 KB
最終ジャッジ日時 2024-06-05 22:04:54
合計ジャッジ時間 19,398 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,556 ms
115,464 KB
testcase_01 AC 1,564 ms
115,332 KB
testcase_02 WA -
testcase_03 AC 1,338 ms
115,496 KB
testcase_04 AC 1,130 ms
115,456 KB
testcase_05 AC 1,545 ms
115,340 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 385 ms
113,024 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 367 ms
113,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = 5 * 10 ** 6
prime = [True] * (N + 1)
prime[0] = prime[1] = False
for i in range(2, N + 1):
    if prime[i]:
        for j in range(2 * i, N + 1, i):
            prime[j] = False

for _ in range(int(input())):
    A, P = map(int, input().split())
    if prime[P]:
        print(1)
    else:
        print(-1)
0