結果

問題 No.1681 +-*
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-09-17 22:01:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 160 ms / 2,000 ms
コード長 227 bytes
コンパイル時間 131 ms
コンパイル使用メモリ 82,604 KB
実行使用メモリ 101,968 KB
最終ジャッジ日時 2024-06-29 20:30:26
合計ジャッジ時間 3,206 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
51,712 KB
testcase_01 AC 31 ms
51,840 KB
testcase_02 AC 33 ms
52,608 KB
testcase_03 AC 34 ms
52,736 KB
testcase_04 AC 33 ms
52,736 KB
testcase_05 AC 142 ms
99,456 KB
testcase_06 AC 147 ms
99,840 KB
testcase_07 AC 141 ms
99,456 KB
testcase_08 AC 159 ms
101,760 KB
testcase_09 AC 159 ms
101,968 KB
testcase_10 AC 158 ms
101,760 KB
testcase_11 AC 158 ms
101,760 KB
testcase_12 AC 160 ms
101,688 KB
testcase_13 AC 90 ms
83,456 KB
testcase_14 AC 158 ms
101,768 KB
testcase_15 AC 32 ms
51,712 KB
testcase_16 AC 32 ms
51,712 KB
testcase_17 AC 156 ms
101,888 KB
testcase_18 AC 158 ms
101,760 KB
testcase_19 AC 159 ms
101,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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