結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,984 KB
testcase_01 AC 34 ms
53,272 KB
testcase_02 AC 35 ms
52,880 KB
testcase_03 AC 36 ms
52,940 KB
testcase_04 AC 35 ms
52,680 KB
testcase_05 AC 155 ms
100,812 KB
testcase_06 AC 151 ms
99,292 KB
testcase_07 AC 156 ms
99,720 KB
testcase_08 AC 168 ms
101,320 KB
testcase_09 AC 168 ms
101,396 KB
testcase_10 AC 168 ms
101,880 KB
testcase_11 AC 172 ms
101,728 KB
testcase_12 AC 171 ms
101,504 KB
testcase_13 AC 98 ms
85,464 KB
testcase_14 AC 169 ms
101,500 KB
testcase_15 AC 34 ms
52,624 KB
testcase_16 AC 33 ms
53,032 KB
testcase_17 AC 169 ms
101,764 KB
testcase_18 AC 169 ms
101,504 KB
testcase_19 AC 169 ms
101,680 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