結果
問題 | No.2344 (l+r)^2 |
ユーザー | miho-4 |
提出日時 | 2023-06-09 21:40:02 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 265 bytes |
コンパイル時間 | 194 ms |
コンパイル使用メモリ | 81,692 KB |
実行使用メモリ | 156,100 KB |
最終ジャッジ日時 | 2024-06-10 13:04:51 |
合計ジャッジ時間 | 11,435 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
52,348 KB |
testcase_01 | AC | 672 ms
76,984 KB |
testcase_02 | AC | 1,807 ms
145,040 KB |
testcase_03 | AC | 1,458 ms
107,028 KB |
testcase_04 | AC | 1,798 ms
146,688 KB |
testcase_05 | AC | 1,797 ms
149,212 KB |
testcase_06 | AC | 1,820 ms
148,364 KB |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
ソースコード
T=int(input()) def f(i,j): if (i,j) not in d: d[(i,j)]=(f(i-1,j)+f(i-1,j+1))**2 % 2**m return d[(i,j)] for _ in range(T): n,m=map(int,input().split()) L=list(map(int,input().split())) d=dict() for j in range(n): d[(0,j)]=L[j] print(f(n-1,0))