結果

問題 No.2578 Jewelry Store
ユーザー 👑 p-adicp-adic
提出日時 2023-12-07 12:39:07
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 812 bytes
コンパイル時間 303 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 80,236 KB
最終ジャッジ日時 2024-09-27 02:06:31
合計ジャッジ時間 28,211 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
57,984 KB
testcase_01 AC 38 ms
52,736 KB
testcase_02 AC 446 ms
78,456 KB
testcase_03 AC 314 ms
78,932 KB
testcase_04 AC 1,092 ms
78,720 KB
testcase_05 AC 180 ms
78,004 KB
testcase_06 AC 500 ms
79,628 KB
testcase_07 AC 1,206 ms
79,648 KB
testcase_08 AC 275 ms
78,276 KB
testcase_09 AC 1,120 ms
78,564 KB
testcase_10 AC 1,915 ms
78,688 KB
testcase_11 AC 173 ms
78,976 KB
testcase_12 AC 279 ms
77,936 KB
testcase_13 AC 195 ms
77,656 KB
testcase_14 AC 197 ms
78,936 KB
testcase_15 AC 221 ms
78,816 KB
testcase_16 AC 2,004 ms
80,236 KB
testcase_17 AC 1,103 ms
78,476 KB
testcase_18 AC 201 ms
78,232 KB
testcase_19 AC 710 ms
78,280 KB
testcase_20 AC 1,138 ms
79,172 KB
testcase_21 AC 1,180 ms
78,716 KB
testcase_22 AC 557 ms
78,212 KB
testcase_23 AC 2,675 ms
78,804 KB
testcase_24 AC 1,363 ms
78,420 KB
testcase_25 AC 1,356 ms
78,212 KB
testcase_26 AC 566 ms
78,736 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 G(a,b):
	while a:a,b=b%a,a
	return b
while M:
	n=M.pop()
	if n in P:continue
	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(99):
			x,d=t,1
			y=(x*x+1)%n
			while d<2:x,y,d=(x*x+1)%n,(y**4+2*y*y+2)%n,G(abs(x-y),n)
			if d<n:
				while n%d<1:n//=d
				M+=[d,n]
				break
		else:P.add(n)
P=list(P)
L=len(P)
E=[]
for i in R(L):
	n=m
	while n%P[i]<1:n//=P[i]
	E+=[m//n]
Q=998244353
for t in R(T):
	N,B,C,D=I()
	A=list(I())
	b=[0]*N
	for i in R(L):
		for j in R(N):b[j]|=(A[j]%E[i]>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