結果

問題 No.444 旨味の相乗効果
ユーザー ytftytft
提出日時 2021-03-29 17:16:06
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 729 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 82,728 KB
実行使用メモリ 337,692 KB
最終ジャッジ日時 2024-11-29 10:08:32
合計ジャッジ時間 58,301 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
57,216 KB
testcase_01 AC 36 ms
153,600 KB
testcase_02 AC 35 ms
57,216 KB
testcase_03 AC 35 ms
169,728 KB
testcase_04 TLE -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 RE -
testcase_09 TLE -
testcase_10 RE -
testcase_11 RE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 AC 38 ms
57,472 KB
testcase_22 AC 39 ms
280,320 KB
testcase_23 TLE -
testcase_24 AC 47 ms
293,760 KB
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

def matrix_power(A,p):
  temp=A
  bench=p-1
  ret=A
  while bench>0:
    if bench%2:
      ret=matrix_product(ret,temp)
    bench=bench//2
    temp=matrix_product(temp,temp)
  return ret

def matrix_product(A,B):
  ret=[[0 for i in range(len(B[0]))] for i in range(len(A))]
  for i in range(len(A)):
    for j in range(len(B[0])):
      s=0
      for k in range(len(A[i])):
          s+=A[i][k]*B[k][j]
      ret[i][j]=s
  return ret
  
n,c=map(int,input().split())
a=list(map(int,input().split()))
A=[[0 for i in range(n)] for i in range(n)]
b=[[1] for i in range(n)]
for i in range(n):
    for j in range(i+1):
        A[i][j]=a[j]
ans=matrix_product(matrix_power(A,c),b)[n-1][0]
for i in range(n):
    ans-=a[i]**c
print(ans)
0