結果

問題 No.1681 +-*
ユーザー flippergoflippergo
提出日時 2024-11-09 08:16:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 274 ms / 2,000 ms
コード長 234 bytes
コンパイル時間 937 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 102,016 KB
最終ジャッジ日時 2024-11-09 08:16:36
合計ジャッジ時間 6,477 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,456 KB
testcase_01 AC 41 ms
51,840 KB
testcase_02 AC 44 ms
52,096 KB
testcase_03 AC 44 ms
52,608 KB
testcase_04 AC 44 ms
52,096 KB
testcase_05 AC 237 ms
100,608 KB
testcase_06 AC 239 ms
100,352 KB
testcase_07 AC 239 ms
100,224 KB
testcase_08 AC 259 ms
101,760 KB
testcase_09 AC 260 ms
101,760 KB
testcase_10 AC 259 ms
101,888 KB
testcase_11 AC 274 ms
101,760 KB
testcase_12 AC 256 ms
101,888 KB
testcase_13 AC 151 ms
84,608 KB
testcase_14 AC 260 ms
101,760 KB
testcase_15 AC 42 ms
51,712 KB
testcase_16 AC 42 ms
51,712 KB
testcase_17 AC 260 ms
102,016 KB
testcase_18 AC 261 ms
102,016 KB
testcase_19 AC 258 ms
101,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10**9+7
N = int(input())
A = list(map(int,input().split()))
ans = 0
c = pow(3,N-1,MOD)
a = 1
for i in range(N-1):
    a = (a*A[i])%MOD
    c = c*pow(3,MOD-2,MOD)%MOD
    ans = (ans +2*c*a)%MOD
ans = (ans+a*A[N-1])%MOD
print(ans)
0