結果

問題 No.1681 +-*
ユーザー mahiro72mahiro72
提出日時 2021-10-02 17:08:28
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 671 ms / 2,000 ms
コード長 217 bytes
コンパイル時間 87 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 32,508 KB
最終ジャッジ日時 2024-07-20 11:57:41
合計ジャッジ時間 10,111 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,496 KB
testcase_01 AC 33 ms
10,496 KB
testcase_02 AC 32 ms
10,624 KB
testcase_03 AC 32 ms
10,752 KB
testcase_04 AC 34 ms
10,624 KB
testcase_05 AC 608 ms
28,268 KB
testcase_06 AC 619 ms
28,396 KB
testcase_07 AC 606 ms
28,392 KB
testcase_08 AC 650 ms
32,504 KB
testcase_09 AC 658 ms
32,372 KB
testcase_10 AC 671 ms
32,504 KB
testcase_11 AC 669 ms
32,376 KB
testcase_12 AC 670 ms
32,380 KB
testcase_13 AC 308 ms
21,548 KB
testcase_14 AC 606 ms
32,500 KB
testcase_15 AC 30 ms
10,496 KB
testcase_16 AC 30 ms
10,496 KB
testcase_17 AC 640 ms
32,508 KB
testcase_18 AC 630 ms
32,372 KB
testcase_19 AC 657 ms
32,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split()))

mod = 10**9+7
ans,tmp =0,1
for i,a in enumerate(A):
    if i==N-1:continue
    tmp = tmp*a%mod
    ans += tmp*2*pow(3,N-i-2,mod)%mod

ans+=tmp*A[-1]
print(ans%mod)
0