結果

問題 No.1140 EXPotentiaLLL!
ユーザー 双六双六
提出日時 2020-07-31 21:33:22
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 626 bytes
コンパイル時間 297 ms
コンパイル使用メモリ 86,880 KB
実行使用メモリ 181,608 KB
最終ジャッジ日時 2023-09-20 21:57:52
合計ジャッジ時間 8,755 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 557 ms
181,472 KB
testcase_01 AC 565 ms
180,904 KB
testcase_02 WA -
testcase_03 AC 541 ms
181,180 KB
testcase_04 AC 505 ms
181,180 KB
testcase_05 AC 585 ms
181,112 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 340 ms
180,520 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 343 ms
180,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys; input = sys.stdin.buffer.readline
sys.setrecursionlimit(10**7)
from collections import defaultdict
con = 10 ** 9 + 7; INF = float("inf")

def getlist():
	return list(map(int, input().split()))

num = 5 * 10 ** 6 + 1 #適当に値を入れる
L = [1 for i in range(num)]; L[0] = 0; L[1] = 0
pbit = [0] * num
plist = []
for i in range(num):
	if L[i] == 1:
		pbit[i] = 1
		plist.append(i); c = 2
		while i * c <= num - 1:
			L[i * c] = 0; c += 1

#処理内容
def main():
	T = int(input())
	for x in range(T):
		A, P = getlist()
		if pbit[P] != 1:
			print(-1)
		else:
			print(1)

if __name__ == '__main__':
	main()
0