結果

問題 No.1681 +-*
ユーザー tassei903tassei903
提出日時 2021-09-17 22:02:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 175 ms / 2,000 ms
コード長 569 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,132 KB
実行使用メモリ 102,096 KB
最終ジャッジ日時 2024-06-29 20:32:59
合計ジャッジ時間 3,553 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,492 KB
testcase_01 AC 40 ms
52,828 KB
testcase_02 AC 39 ms
52,900 KB
testcase_03 AC 38 ms
52,760 KB
testcase_04 AC 38 ms
52,560 KB
testcase_05 AC 162 ms
99,900 KB
testcase_06 AC 161 ms
100,848 KB
testcase_07 AC 160 ms
99,532 KB
testcase_08 AC 173 ms
102,096 KB
testcase_09 AC 173 ms
101,940 KB
testcase_10 AC 174 ms
101,824 KB
testcase_11 AC 173 ms
101,900 KB
testcase_12 AC 173 ms
101,896 KB
testcase_13 AC 103 ms
84,524 KB
testcase_14 AC 174 ms
101,836 KB
testcase_15 AC 36 ms
52,288 KB
testcase_16 AC 36 ms
52,016 KB
testcase_17 AC 172 ms
101,992 KB
testcase_18 AC 172 ms
101,948 KB
testcase_19 AC 175 ms
101,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
sys.setrecursionlimit(10**7)
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################

n = ni()
a = na()
ans = 0
mod = 10**9+7
c = 1
for i in range(n):
    c*=a[i]
    c%=mod
    if i==n-1:
        ans+=c
    else:
        ans+=2*pow(3,n-i-2,mod)*c
    ans%=mod
print(ans)
0