結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,992 KB
testcase_01 AC 38 ms
52,352 KB
testcase_02 AC 114 ms
77,396 KB
testcase_03 AC 98 ms
76,916 KB
testcase_04 AC 189 ms
76,672 KB
testcase_05 AC 128 ms
77,440 KB
testcase_06 AC 115 ms
77,224 KB
testcase_07 AC 188 ms
76,960 KB
testcase_08 AC 95 ms
76,452 KB
testcase_09 AC 186 ms
77,056 KB
testcase_10 AC 272 ms
76,940 KB
testcase_11 AC 108 ms
76,640 KB
testcase_12 AC 94 ms
76,880 KB
testcase_13 AC 99 ms
77,184 KB
testcase_14 AC 105 ms
76,888 KB
testcase_15 AC 96 ms
77,056 KB
testcase_16 AC 273 ms
76,540 KB
testcase_17 AC 188 ms
76,672 KB
testcase_18 AC 96 ms
77,036 KB
testcase_19 AC 138 ms
76,976 KB
testcase_20 AC 189 ms
77,056 KB
testcase_21 AC 186 ms
76,820 KB
testcase_22 AC 107 ms
76,840 KB
testcase_23 AC 122 ms
76,640 KB
testcase_24 AC 83 ms
73,728 KB
testcase_25 AC 105 ms
76,344 KB
testcase_26 AC 105 ms
76,776 KB
testcase_27 AC 312 ms
76,928 KB
testcase_28 AC 595 ms
76,864 KB
testcase_29 AC 579 ms
77,304 KB
testcase_30 AC 796 ms
77,532 KB
testcase_31 AC 313 ms
76,628 KB
testcase_32 AC 283 ms
107,536 KB
testcase_33 AC 336 ms
101,108 KB
testcase_34 AC 398 ms
108,108 KB
testcase_35 AC 156 ms
92,672 KB
testcase_36 AC 317 ms
110,392 KB
testcase_37 AC 232 ms
77,332 KB
testcase_38 AC 375 ms
77,864 KB
testcase_39 AC 242 ms
80,096 KB
testcase_40 AC 238 ms
76,928 KB
testcase_41 AC 253 ms
77,200 KB
testcase_42 AC 255 ms
77,524 KB
testcase_43 AC 299 ms
76,860 KB
testcase_44 AC 679 ms
77,184 KB
testcase_45 AC 274 ms
78,132 KB
testcase_46 AC 269 ms
78,932 KB
testcase_47 AC 1,635 ms
78,844 KB
testcase_48 AC 534 ms
126,064 KB
testcase_49 TLE -
testcase_50 TLE -
testcase_51 AC 241 ms
77,568 KB
testcase_52 AC 690 ms
77,440 KB
testcase_53 AC 116 ms
76,800 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)]
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]*s[d]
	print((v-(m<2))%Q)
0