結果

問題 No.1681 +-*
ユーザー とりゐとりゐ
提出日時 2021-09-17 21:28:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 169 ms / 2,000 ms
コード長 186 bytes
コンパイル時間 315 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 102,144 KB
最終ジャッジ日時 2024-06-29 19:50:40
合計ジャッジ時間 3,217 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,840 KB
testcase_01 AC 32 ms
52,096 KB
testcase_02 AC 33 ms
52,864 KB
testcase_03 AC 32 ms
52,864 KB
testcase_04 AC 32 ms
52,352 KB
testcase_05 AC 142 ms
99,456 KB
testcase_06 AC 144 ms
99,840 KB
testcase_07 AC 143 ms
99,328 KB
testcase_08 AC 160 ms
101,888 KB
testcase_09 AC 163 ms
102,016 KB
testcase_10 AC 169 ms
102,072 KB
testcase_11 AC 160 ms
102,016 KB
testcase_12 AC 160 ms
102,144 KB
testcase_13 AC 92 ms
83,328 KB
testcase_14 AC 159 ms
101,836 KB
testcase_15 AC 34 ms
51,712 KB
testcase_16 AC 32 ms
52,096 KB
testcase_17 AC 160 ms
101,872 KB
testcase_18 AC 160 ms
101,888 KB
testcase_19 AC 160 ms
101,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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