結果

問題 No.1681 +-*
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2021-09-17 22:28:54
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 237 ms / 2,000 ms
コード長 323 bytes
コンパイル時間 72 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 33,392 KB
最終ジャッジ日時 2024-06-29 21:08:53
合計ジャッジ時間 3,893 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 26 ms
10,624 KB
testcase_03 AC 26 ms
10,624 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 200 ms
28,408 KB
testcase_06 AC 202 ms
28,280 KB
testcase_07 AC 193 ms
28,528 KB
testcase_08 AC 232 ms
33,392 KB
testcase_09 AC 237 ms
33,380 KB
testcase_10 AC 236 ms
33,260 KB
testcase_11 AC 233 ms
33,260 KB
testcase_12 AC 229 ms
33,384 KB
testcase_13 AC 110 ms
21,380 KB
testcase_14 AC 190 ms
33,256 KB
testcase_15 AC 24 ms
10,624 KB
testcase_16 AC 24 ms
10,624 KB
testcase_17 AC 221 ms
33,388 KB
testcase_18 AC 212 ms
33,124 KB
testcase_19 AC 226 ms
33,388 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 10**9 + 7
N = int(input())
A = list(map(int,input().split()))
inv_3 = pow(3,mod-2,mod)
ans = 0
tmp = 2*pow(3,N-2,mod)*A[0]
ans += tmp
ans %= mod

for i in range(1,N):
    tmp *= A[i]
    if i < N-1:
        tmp *= inv_3
    else:
        tmp *= pow(2,mod-2,mod)
    tmp %= mod
    ans += tmp
    ans %= mod
print(ans)
0