結果

問題 No.1140 EXPotentiaLLL!
ユーザー ShirotsumeShirotsume
提出日時 2023-02-17 19:49:43
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 498 bytes
コンパイル時間 401 ms
コンパイル使用メモリ 87,032 KB
実行使用メモリ 157,204 KB
最終ジャッジ日時 2023-09-26 17:16:47
合計ジャッジ時間 16,831 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 AC 818 ms
155,440 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import deque, Counter
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 63 - 1
mod = 998244353
maxi = 10 ** 7
prime = [True] * (maxi)
prime[0] = prime[1] = False

for i in range(2, maxi):
    if prime[i]:
        for j in range(2 * i, maxi, i):
            prime[j] = False

for _ in range(ii()):
    p, a = mi()
    if prime[p]:
        print(1)
    else:
        print(-1)
0