結果

問題 No.2344 (l+r)^2
ユーザー prussian_coderprussian_coder
提出日時 2023-06-11 08:57:24
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 553 bytes
コンパイル時間 601 ms
コンパイル使用メモリ 87,132 KB
実行使用メモリ 86,484 KB
最終ジャッジ日時 2023-08-31 01:50:46
合計ジャッジ時間 7,112 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
75,704 KB
testcase_01 AC 630 ms
78,896 KB
testcase_02 AC 336 ms
81,196 KB
testcase_03 AC 339 ms
82,264 KB
testcase_04 AC 328 ms
82,772 KB
testcase_05 AC 334 ms
81,016 KB
testcase_06 AC 331 ms
81,776 KB
testcase_07 AC 126 ms
83,760 KB
testcase_08 AC 127 ms
84,448 KB
testcase_09 AC 153 ms
81,972 KB
testcase_10 TLE -
testcase_11 -- -
testcase_12 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

T=int(input())

def rep_mul(a,x,m):
	t=0
	val=a
	while t<x:
		if val==0 or val==1:
			return val
		val*=a
		val%=m
		t+=1
	return val
	
def process(A,m):
	N=len(A)
	if N==1:
		return A[0]
	B=[(A[i]+A[i+1])**2%m for i in range(N-1)]
	return process(B,m)

def find_min_2x(N):
	return 1<<(len(bin(N))-3)
	

def solve():
	L,M=map(int,input().split())
	A=[int(x) for x in input().split()]
	m=1<<M
	while L>50:
		X = find_min_2x(L-40)
		A=[rep_mul(A[i],X,m)+rep_mul(A[i+X],X,m) for i in range(L-X)]
		L=len(A)

	print(process(A,m))
for _ in range(T):
	solve()
0