結果

問題 No.1681 +-*
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-09-17 23:01:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 270 ms / 2,000 ms
コード長 439 bytes
コンパイル時間 250 ms
コンパイル使用メモリ 81,660 KB
実行使用メモリ 106,476 KB
最終ジャッジ日時 2024-06-29 21:49:52
合計ジャッジ時間 4,813 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,136 KB
testcase_01 AC 40 ms
52,796 KB
testcase_02 AC 41 ms
53,540 KB
testcase_03 AC 41 ms
53,756 KB
testcase_04 AC 40 ms
54,228 KB
testcase_05 AC 257 ms
106,248 KB
testcase_06 AC 257 ms
106,476 KB
testcase_07 AC 257 ms
106,160 KB
testcase_08 AC 268 ms
101,464 KB
testcase_09 AC 265 ms
101,588 KB
testcase_10 AC 269 ms
101,812 KB
testcase_11 AC 268 ms
101,816 KB
testcase_12 AC 267 ms
101,724 KB
testcase_13 AC 153 ms
91,420 KB
testcase_14 AC 269 ms
101,960 KB
testcase_15 AC 36 ms
52,088 KB
testcase_16 AC 37 ms
51,964 KB
testcase_17 AC 268 ms
101,784 KB
testcase_18 AC 267 ms
101,656 KB
testcase_19 AC 270 ms
101,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int,input().split()))
mod = 10**9+7
three = 1
dp = [A[0],0]
ans = 0
for i,a in enumerate(A[1:],1):
    ndp = [0,0]
    ans += dp[0]*pow(3,n-1-i,mod)*2%mod
    ans -= dp[1]*pow(3,n-1-i,mod)*2%mod
    ans %= mod
    ndp[0] += dp[0]*a
    ndp[0] += three*a
    ndp[0] %= mod
    ndp[1] += dp[1]*a
    ndp[1] += three*a
    ndp[1] %= mod
    dp = ndp
    three *= 3
    three %= mod

print((ans+dp[0]-dp[1])%mod)
0