結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
59,296 KB
testcase_01 AC 38 ms
52,352 KB
testcase_02 AC 175 ms
77,184 KB
testcase_03 AC 124 ms
76,672 KB
testcase_04 AC 408 ms
76,956 KB
testcase_05 AC 122 ms
76,968 KB
testcase_06 AC 177 ms
76,768 KB
testcase_07 AC 414 ms
77,288 KB
testcase_08 AC 121 ms
76,800 KB
testcase_09 AC 407 ms
77,312 KB
testcase_10 AC 692 ms
77,828 KB
testcase_11 AC 116 ms
76,432 KB
testcase_12 AC 119 ms
76,928 KB
testcase_13 AC 109 ms
76,808 KB
testcase_14 AC 116 ms
76,512 KB
testcase_15 AC 126 ms
77,392 KB
testcase_16 AC 702 ms
78,124 KB
testcase_17 AC 404 ms
76,956 KB
testcase_18 AC 124 ms
76,656 KB
testcase_19 AC 248 ms
76,700 KB
testcase_20 AC 401 ms
77,472 KB
testcase_21 AC 410 ms
77,016 KB
testcase_22 AC 157 ms
76,912 KB
testcase_23 AC 224 ms
76,404 KB
testcase_24 AC 121 ms
76,536 KB
testcase_25 AC 162 ms
76,672 KB
testcase_26 AC 148 ms
76,864 KB
testcase_27 AC 356 ms
77,440 KB
testcase_28 AC 1,001 ms
78,608 KB
testcase_29 AC 1,005 ms
78,960 KB
testcase_30 AC 1,637 ms
83,428 KB
testcase_31 AC 351 ms
77,120 KB
testcase_32 AC 288 ms
104,852 KB
testcase_33 AC 343 ms
97,280 KB
testcase_34 AC 412 ms
121,092 KB
testcase_35 AC 155 ms
92,544 KB
testcase_36 AC 330 ms
113,864 KB
testcase_37 AC 231 ms
77,184 KB
testcase_38 AC 279 ms
77,568 KB
testcase_39 AC 231 ms
80,208 KB
testcase_40 AC 253 ms
77,800 KB
testcase_41 AC 250 ms
76,980 KB
testcase_42 AC 241 ms
77,464 KB
testcase_43 WA -
testcase_44 AC 247 ms
77,440 KB
testcase_45 AC 279 ms
77,148 KB
testcase_46 AC 231 ms
79,376 KB
testcase_47 TLE -
testcase_48 AC 534 ms
147,328 KB
testcase_49 TLE -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
権限があれば一括ダウンロードができます

ソースコード

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)
	if n<10**9:r(n)
	else:
		while c:
			x,d=c,1
			y=(x*x+1)%n
			while d<2 and 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
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 R(U):
			if d>>i&1<1:c[d]=c[d]*c[d|1<<i]%Q
	v=0
	for d in R(U):v+=c[d]*[1,-1][len([1for i in R(L)if d>>i&1])%2]
	print((v-(m<2))%Q)
0