結果

問題 No.1681 +-*
ユーザー brthyyjpbrthyyjp
提出日時 2021-09-17 22:02:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 102 ms / 2,000 ms
コード長 345 bytes
コンパイル時間 140 ms
コンパイル使用メモリ 81,692 KB
実行使用メモリ 110,572 KB
最終ジャッジ日時 2024-06-29 20:31:13
合計ジャッジ時間 2,958 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
66,432 KB
testcase_01 AC 45 ms
66,268 KB
testcase_02 AC 48 ms
67,484 KB
testcase_03 AC 45 ms
67,812 KB
testcase_04 AC 46 ms
66,952 KB
testcase_05 AC 87 ms
109,976 KB
testcase_06 AC 86 ms
110,572 KB
testcase_07 AC 85 ms
110,068 KB
testcase_08 AC 100 ms
108,244 KB
testcase_09 AC 101 ms
108,476 KB
testcase_10 AC 101 ms
108,152 KB
testcase_11 AC 102 ms
108,036 KB
testcase_12 AC 99 ms
108,400 KB
testcase_13 AC 73 ms
93,868 KB
testcase_14 AC 101 ms
108,120 KB
testcase_15 AC 47 ms
66,464 KB
testcase_16 AC 46 ms
67,328 KB
testcase_17 AC 99 ms
108,408 KB
testcase_18 AC 98 ms
108,300 KB
testcase_19 AC 99 ms
108,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

N = 10**6
P = [0]*N
P[0] = 1
for i in range(1, N):
    P[i] = P[i-1]*3
    P[i] %= mod
ans = 0
for i in range(n-1):
    ans += C[i]*2*P[n-2-i]
    ans %= mod
ans += C[-1]
ans %= mod
print(ans)
0