結果

問題 No.1681 +-*
ユーザー wolgnikwolgnik
提出日時 2021-09-17 21:33:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 179 ms / 2,000 ms
コード長 266 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 81,708 KB
実行使用メモリ 100,744 KB
最終ジャッジ日時 2024-06-29 19:56:57
合計ジャッジ時間 3,539 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,572 KB
testcase_01 AC 37 ms
52,388 KB
testcase_02 AC 39 ms
53,284 KB
testcase_03 AC 38 ms
53,344 KB
testcase_04 AC 39 ms
53,816 KB
testcase_05 AC 161 ms
100,744 KB
testcase_06 AC 160 ms
100,704 KB
testcase_07 AC 162 ms
100,156 KB
testcase_08 AC 179 ms
100,140 KB
testcase_09 AC 179 ms
100,124 KB
testcase_10 AC 178 ms
100,344 KB
testcase_11 AC 179 ms
100,044 KB
testcase_12 AC 178 ms
99,920 KB
testcase_13 AC 103 ms
84,012 KB
testcase_14 AC 178 ms
99,992 KB
testcase_15 AC 36 ms
52,672 KB
testcase_16 AC 36 ms
52,512 KB
testcase_17 AC 179 ms
100,004 KB
testcase_18 AC 178 ms
99,992 KB
testcase_19 AC 178 ms
99,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
N = int(input())
a = list(map(int, input().split()))
mod = 10 ** 9 + 7

res = 0
cs = 1
for i in range(N):
  x = a[i]
  cs *= x
  cs %= mod
  res += cs * (2 * pow(3, max(0, N - i - 2), mod)) ** (i < N - 1)
  res %= mod
print(res)
0