結果

問題 No.1681 +-*
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2021-09-17 21:43:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 162 ms / 2,000 ms
コード長 375 bytes
コンパイル時間 122 ms
コンパイル使用メモリ 82,344 KB
実行使用メモリ 100,224 KB
最終ジャッジ日時 2024-06-29 20:07:45
合計ジャッジ時間 3,284 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
51,712 KB
testcase_01 AC 30 ms
51,712 KB
testcase_02 AC 33 ms
52,608 KB
testcase_03 AC 32 ms
52,608 KB
testcase_04 AC 36 ms
52,864 KB
testcase_05 AC 142 ms
99,200 KB
testcase_06 AC 143 ms
98,816 KB
testcase_07 AC 142 ms
98,944 KB
testcase_08 AC 157 ms
99,892 KB
testcase_09 AC 159 ms
99,960 KB
testcase_10 AC 161 ms
100,096 KB
testcase_11 AC 158 ms
100,084 KB
testcase_12 AC 157 ms
99,964 KB
testcase_13 AC 93 ms
82,560 KB
testcase_14 AC 162 ms
100,224 KB
testcase_15 AC 33 ms
51,584 KB
testcase_16 AC 33 ms
51,712 KB
testcase_17 AC 157 ms
100,000 KB
testcase_18 AC 157 ms
99,832 KB
testcase_19 AC 157 ms
99,740 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

最初の掛け算の項以外は、対消滅する

"""

import sys
from sys import stdin

mod = 10**9+7

N = int(stdin.readline())

A = list(map(int,stdin.readline().split()))

ans = 0

now = 1
for i in range(N):

    now *= A[i]
    now %= mod

    if i == N-1:
        ans += now
    else:
        ans += now * 2 * pow(3,N-2-i,mod)
    ans %= mod

print (ans % mod)
0