結果

問題 No.2344 (l+r)^2
ユーザー miho-4miho-4
提出日時 2023-06-09 21:42:47
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 315 bytes
コンパイル時間 256 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 17,820 KB
最終ジャッジ日時 2024-06-10 13:07:15
合計ジャッジ時間 5,959 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
17,820 KB
testcase_01 TLE -
testcase_02 TLE -
testcase_03 TLE -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**8)

def f(i,j):
  if (i,j) not in d:
    d[(i,j)]=(f(i-1,j)+f(i-1,j+1))**2 % mod
  return d[(i,j)]

T=int(input())
for _ in range(T):
  n,m=map(int,input().split())
  mod=2**m
  L=list(map(int,input().split()))
  d=dict()
  for j in range(n):
    d[(0,j)]=L[j]
  print(f(n-1,0))
0