結果
問題 | No.2344 (l+r)^2 |
ユーザー | prussian_coder |
提出日時 | 2023-06-11 08:54:02 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 542 bytes |
コンパイル時間 | 420 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 83,200 KB |
最終ジャッジ日時 | 2024-06-11 00:52:59 |
合計ジャッジ時間 | 5,656 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 42 ms
57,472 KB |
testcase_01 | AC | 664 ms
76,928 KB |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | TLE | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
ソースコード
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)] print(process(A,m)) for _ in range(T): solve()