結果

問題 No.1681 +-*
ユーザー hir355hir355
提出日時 2021-09-17 21:50:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 164 ms / 2,000 ms
コード長 239 bytes
コンパイル時間 197 ms
コンパイル使用メモリ 82,120 KB
実行使用メモリ 103,048 KB
最終ジャッジ日時 2024-06-29 20:15:21
合計ジャッジ時間 3,201 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
53,252 KB
testcase_01 AC 33 ms
51,692 KB
testcase_02 AC 34 ms
53,056 KB
testcase_03 AC 32 ms
52,488 KB
testcase_04 AC 32 ms
53,424 KB
testcase_05 AC 145 ms
103,048 KB
testcase_06 AC 149 ms
102,944 KB
testcase_07 AC 144 ms
102,868 KB
testcase_08 AC 164 ms
102,056 KB
testcase_09 AC 159 ms
102,072 KB
testcase_10 AC 158 ms
102,092 KB
testcase_11 AC 159 ms
101,740 KB
testcase_12 AC 160 ms
101,984 KB
testcase_13 AC 89 ms
84,292 KB
testcase_14 AC 157 ms
102,020 KB
testcase_15 AC 33 ms
52,032 KB
testcase_16 AC 34 ms
52,940 KB
testcase_17 AC 163 ms
101,736 KB
testcase_18 AC 157 ms
101,888 KB
testcase_19 AC 158 ms
101,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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