結果

問題 No.1681 +-*
ユーザー RedSpicaRedSpica
提出日時 2021-09-20 01:24:46
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 684 ms / 2,000 ms
コード長 208 bytes
コンパイル時間 241 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 32,644 KB
最終ジャッジ日時 2024-07-02 06:06:07
合計ジャッジ時間 10,848 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,496 KB
testcase_01 AC 34 ms
10,496 KB
testcase_02 AC 32 ms
10,624 KB
testcase_03 AC 33 ms
10,624 KB
testcase_04 AC 31 ms
10,624 KB
testcase_05 AC 632 ms
28,272 KB
testcase_06 AC 630 ms
28,400 KB
testcase_07 AC 633 ms
28,260 KB
testcase_08 AC 673 ms
32,388 KB
testcase_09 AC 673 ms
32,512 KB
testcase_10 AC 682 ms
32,388 KB
testcase_11 AC 678 ms
32,388 KB
testcase_12 AC 671 ms
32,348 KB
testcase_13 AC 314 ms
21,548 KB
testcase_14 AC 625 ms
32,640 KB
testcase_15 AC 29 ms
10,624 KB
testcase_16 AC 31 ms
10,496 KB
testcase_17 AC 653 ms
32,644 KB
testcase_18 AC 656 ms
32,512 KB
testcase_19 AC 684 ms
32,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod=10**9+7
n=int(input())
A=list(map(int,input().split()))

ans=0
cur=1
for i in range(n-1):
    cur*=A[i]
    cur%=mod

    now=(pow(3,n-2-i,mod)*2)*cur
    ans+=now
    ans%=mod
print((ans+cur*A[n-1])%mod)
0