結果

問題 No.2578 Jewelry Store
ユーザー 👑 p-adicp-adic
提出日時 2023-12-07 16:42:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,245 ms / 3,500 ms
コード長 852 bytes
コンパイル時間 343 ms
コンパイル使用メモリ 82,156 KB
実行使用メモリ 149,376 KB
最終ジャッジ日時 2024-09-27 02:13:57
合計ジャッジ時間 19,422 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,224 KB
testcase_01 AC 36 ms
52,224 KB
testcase_02 AC 101 ms
77,312 KB
testcase_03 AC 90 ms
76,672 KB
testcase_04 AC 138 ms
76,900 KB
testcase_05 AC 103 ms
76,672 KB
testcase_06 AC 102 ms
77,696 KB
testcase_07 AC 136 ms
76,356 KB
testcase_08 AC 92 ms
76,800 KB
testcase_09 AC 133 ms
77,040 KB
testcase_10 AC 187 ms
76,720 KB
testcase_11 AC 100 ms
77,184 KB
testcase_12 AC 91 ms
77,056 KB
testcase_13 AC 110 ms
76,828 KB
testcase_14 AC 101 ms
76,928 KB
testcase_15 AC 96 ms
76,672 KB
testcase_16 AC 180 ms
76,600 KB
testcase_17 AC 135 ms
76,288 KB
testcase_18 AC 105 ms
76,832 KB
testcase_19 AC 114 ms
76,672 KB
testcase_20 AC 134 ms
77,184 KB
testcase_21 AC 135 ms
76,840 KB
testcase_22 AC 98 ms
77,184 KB
testcase_23 AC 105 ms
76,800 KB
testcase_24 AC 79 ms
73,216 KB
testcase_25 AC 97 ms
76,288 KB
testcase_26 AC 98 ms
77,184 KB
testcase_27 AC 304 ms
76,928 KB
testcase_28 AC 512 ms
76,820 KB
testcase_29 AC 488 ms
76,980 KB
testcase_30 AC 589 ms
77,312 KB
testcase_31 AC 306 ms
76,928 KB
testcase_32 AC 273 ms
108,684 KB
testcase_33 AC 328 ms
101,940 KB
testcase_34 AC 398 ms
107,648 KB
testcase_35 AC 160 ms
92,032 KB
testcase_36 AC 324 ms
109,808 KB
testcase_37 AC 242 ms
78,208 KB
testcase_38 AC 373 ms
77,824 KB
testcase_39 AC 242 ms
81,152 KB
testcase_40 AC 241 ms
76,672 KB
testcase_41 AC 252 ms
77,312 KB
testcase_42 AC 267 ms
77,568 KB
testcase_43 AC 296 ms
76,928 KB
testcase_44 AC 677 ms
77,184 KB
testcase_45 AC 266 ms
77,184 KB
testcase_46 AC 269 ms
78,772 KB
testcase_47 AC 1,027 ms
79,360 KB
testcase_48 AC 542 ms
148,352 KB
testcase_49 AC 2,188 ms
137,856 KB
testcase_50 AC 2,245 ms
149,376 KB
testcase_51 AC 240 ms
77,184 KB
testcase_52 AC 547 ms
77,352 KB
testcase_53 AC 117 ms
76,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

R=range
I=lambda:map(int,input().split())
T,m=I()
P,n=set(),m
for i in R(2,min(m+1,31623)):
	if n%i<1:P.add(i)
	while n%i<1:n//=i
M=[n]*(n>1)
def G(a,b):
	while a:a,b=b%a,a
	return b
def r(n):
	for j in R(len(M)):
		while M[j]%n<1:M[j]//=n
	P.add(n)
while M:
	n=M.pop()
	c=int(n**0.25)*9
	if n<10**9:r(n)
	else:
		while c:
			x,d=c,1
			y=(x*x+1)%n
			while (d<2)*c:x,y,d,c=(x*x+1)%n,(y**4+2*y*y+2)%n,G(abs(x-y),n),c-1
			if d<n and c:
				M+=[n//d,d]
				break
		else:r(n)
P=list(P)
L=len(P)
Q=998244353
U=1<<L
s=[1-len([1for i in R(L)if d>>i&1])%2*2for d in R(U)]
E=[[d for d in R(U)if d>>i&1<1]for i in R(L)]
for t in R(T):
	N,B,C,D=I()
	c=[1]*U
	for a in I():
		b=0
		for i in R(L):b|=(m//a%P[i]<1)<<i
		c[b],B=c[b]*(1+B*(m%a<1))%Q,(C*B+D)%Q
	for i in R(L):
		for d in E[i]:c[d]=c[d]*c[d|1<<i]%Q
	v=0
	for d in R(U):v+=c[d]*s[d]
	print((v-(m<2))%Q)
0