結果

問題 No.1681 +-*
ユーザー O2MTO2MT
提出日時 2021-09-18 00:41:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 182 ms / 2,000 ms
コード長 215 bytes
コンパイル時間 135 ms
コンパイル使用メモリ 82,088 KB
実行使用メモリ 101,972 KB
最終ジャッジ日時 2024-06-29 23:40:11
合計ジャッジ時間 3,703 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,968 KB
testcase_01 AC 37 ms
51,840 KB
testcase_02 AC 38 ms
52,992 KB
testcase_03 AC 38 ms
52,224 KB
testcase_04 AC 39 ms
52,124 KB
testcase_05 AC 164 ms
99,584 KB
testcase_06 AC 161 ms
99,456 KB
testcase_07 AC 163 ms
99,712 KB
testcase_08 AC 180 ms
101,972 KB
testcase_09 AC 179 ms
101,744 KB
testcase_10 AC 179 ms
101,748 KB
testcase_11 AC 179 ms
101,880 KB
testcase_12 AC 182 ms
101,960 KB
testcase_13 AC 104 ms
83,712 KB
testcase_14 AC 180 ms
101,896 KB
testcase_15 AC 36 ms
51,584 KB
testcase_16 AC 36 ms
51,840 KB
testcase_17 AC 180 ms
101,768 KB
testcase_18 AC 176 ms
101,888 KB
testcase_19 AC 180 ms
101,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ans += n*A[-1]
ans %= MOD

print(ans)
0