結果

問題 No.2578 Jewelry Store
ユーザー 👑 p-adicp-adic
提出日時 2023-12-07 09:49:07
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 776 bytes
コンパイル時間 474 ms
コンパイル使用メモリ 82,472 KB
実行使用メモリ 97,880 KB
最終ジャッジ日時 2024-09-27 02:01:12
合計ジャッジ時間 28,342 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
54,996 KB
testcase_01 AC 35 ms
52,332 KB
testcase_02 AC 499 ms
80,144 KB
testcase_03 WA -
testcase_04 AC 1,172 ms
79,100 KB
testcase_05 AC 170 ms
78,084 KB
testcase_06 AC 493 ms
78,388 KB
testcase_07 WA -
testcase_08 AC 494 ms
78,508 KB
testcase_09 AC 1,146 ms
79,296 KB
testcase_10 AC 2,060 ms
80,260 KB
testcase_11 AC 174 ms
78,740 KB
testcase_12 AC 267 ms
78,292 KB
testcase_13 AC 188 ms
77,780 KB
testcase_14 AC 185 ms
78,808 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 1,178 ms
78,800 KB
testcase_18 WA -
testcase_19 AC 698 ms
78,744 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 567 ms
79,492 KB
testcase_23 AC 2,816 ms
79,148 KB
testcase_24 AC 1,551 ms
79,596 KB
testcase_25 WA -
testcase_26 AC 615 ms
79,012 KB
testcase_27 TLE -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

R=range
I=lambda:map(int,input().split())
T,m=I()
M=[m]
P=set()
def gcd(a,b):
	while a:a,b=b%a,a
	return b
while M:
	n=M.pop()
	if n<99:
		for i in R(2,n+1):
			if n%i<1:
				P.add(i)
				while n%i<1:n//=i
	else:
		for t in R(int(n**0.25)*2+9):
			x,d=int(n**0.5)+1,1
			y=(x*x+1)%n
			while d<2:x,y,d=(x*x+1)%n,(y**4+2*y*y+2)%n,gcd(abs(x-y),n)
			if d<n:
				M+=[d,n//d]
				break
		else:P.add(n)
P=list(P)
L=len(P)
Q=998244353
for t in R(T):
	N,B,C,D=I()
	A=list(I())
	b=[0]*N
	for i in R(L):
		n=m
		while n%P[i]<1:n//=P[i]
		for j in R(N):b[j]|=(A[j]%(m//n)>0)*1<<i
	W=[]
	for a in A:
		W+=[1+B*(m%a<1)]
		B=(C*B+D)%Q
	v=0
	for d in R(1<<L):
		w,S=1,[i for i in R(L)if d>>i&1]
		for j in R(N):w*=[1,W[j]][all(b[j]>>i&1for i in S)]
		v+=[w,-w][len(S)%2]
	print((v-(m<2))%Q)
0