結果

問題 No.1681 +-*
ユーザー roarisroaris
提出日時 2021-09-21 23:33:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 182 ms / 2,000 ms
コード長 287 bytes
コンパイル時間 275 ms
コンパイル使用メモリ 82,104 KB
実行使用メモリ 100,352 KB
最終ジャッジ日時 2024-07-04 09:16:20
合計ジャッジ時間 4,551 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,532 KB
testcase_01 AC 37 ms
52,624 KB
testcase_02 AC 38 ms
53,496 KB
testcase_03 AC 40 ms
52,616 KB
testcase_04 AC 39 ms
54,652 KB
testcase_05 AC 165 ms
99,892 KB
testcase_06 AC 165 ms
99,448 KB
testcase_07 AC 163 ms
99,668 KB
testcase_08 AC 181 ms
100,180 KB
testcase_09 AC 181 ms
100,084 KB
testcase_10 AC 182 ms
100,336 KB
testcase_11 AC 181 ms
100,240 KB
testcase_12 AC 181 ms
100,036 KB
testcase_13 AC 104 ms
83,752 KB
testcase_14 AC 180 ms
100,032 KB
testcase_15 AC 38 ms
53,212 KB
testcase_16 AC 38 ms
52,944 KB
testcase_17 AC 181 ms
100,352 KB
testcase_18 AC 181 ms
100,308 KB
testcase_19 AC 181 ms
100,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N = int(input())
A = list(map(int, input().split()))
ans = 0
now = 1
MOD = 10**9+7

for i in range(N-1):
    now *= A[i]
    now %= MOD
    ans += now*2*pow(3, N-i-2, MOD)%MOD
    ans %= MOD

now *= A[-1]
now %= MOD
ans += now
ans %= MOD
print(ans)
0