結果

問題 No.1681 +-*
ユーザー irumo8202irumo8202
提出日時 2022-01-27 11:00:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 177 ms / 2,000 ms
コード長 242 bytes
コンパイル時間 710 ms
コンパイル使用メモリ 82,088 KB
実行使用メモリ 102,052 KB
最終ジャッジ日時 2024-06-07 00:16:19
合計ジャッジ時間 3,666 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,360 KB
testcase_01 AC 36 ms
52,084 KB
testcase_02 AC 38 ms
53,252 KB
testcase_03 AC 36 ms
53,816 KB
testcase_04 AC 38 ms
53,152 KB
testcase_05 AC 156 ms
100,292 KB
testcase_06 AC 156 ms
100,596 KB
testcase_07 AC 154 ms
99,352 KB
testcase_08 AC 174 ms
101,960 KB
testcase_09 AC 177 ms
101,260 KB
testcase_10 AC 176 ms
101,308 KB
testcase_11 AC 172 ms
102,052 KB
testcase_12 AC 175 ms
101,368 KB
testcase_13 AC 98 ms
83,940 KB
testcase_14 AC 167 ms
102,004 KB
testcase_15 AC 36 ms
52,244 KB
testcase_16 AC 36 ms
51,932 KB
testcase_17 AC 169 ms
102,028 KB
testcase_18 AC 167 ms
101,784 KB
testcase_19 AC 170 ms
101,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ans = 0
tot = 1

for i in range(N - 1):
    tot *= A[i]
    tot %= MOD
    ans += tot * pow(3, N - i - 2, MOD) * 2
    ans %= MOD
ans += tot * A[-1]
ans %= MOD
print(ans)
0