結果

問題 No.2344 (l+r)^2
ユーザー miho-4miho-4
提出日時 2023-06-09 21:42:08
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 315 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 81,960 KB
実行使用メモリ 367,528 KB
最終ジャッジ日時 2024-06-10 13:06:34
合計ジャッジ時間 11,353 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
59,008 KB
testcase_01 AC 588 ms
77,652 KB
testcase_02 AC 1,435 ms
146,680 KB
testcase_03 AC 1,194 ms
108,060 KB
testcase_04 AC 1,392 ms
146,300 KB
testcase_05 AC 1,448 ms
148,376 KB
testcase_06 AC 1,424 ms
148,676 KB
testcase_07 TLE -
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