結果

問題 No.1681 +-*
ユーザー Eki1009Eki1009
提出日時 2021-09-18 00:24:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 109 ms / 2,000 ms
コード長 213 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 127,556 KB
最終ジャッジ日時 2024-06-29 23:21:39
合計ジャッジ時間 3,129 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,840 KB
testcase_01 AC 40 ms
51,712 KB
testcase_02 AC 38 ms
53,248 KB
testcase_03 AC 39 ms
52,352 KB
testcase_04 AC 40 ms
52,352 KB
testcase_05 AC 101 ms
121,344 KB
testcase_06 AC 99 ms
121,092 KB
testcase_07 AC 101 ms
121,024 KB
testcase_08 AC 107 ms
127,232 KB
testcase_09 AC 109 ms
126,928 KB
testcase_10 AC 107 ms
127,556 KB
testcase_11 AC 109 ms
127,276 KB
testcase_12 AC 108 ms
127,408 KB
testcase_13 AC 74 ms
93,100 KB
testcase_14 AC 107 ms
126,920 KB
testcase_15 AC 38 ms
51,676 KB
testcase_16 AC 38 ms
52,224 KB
testcase_17 AC 106 ms
127,104 KB
testcase_18 AC 107 ms
126,968 KB
testcase_19 AC 106 ms
127,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 10**9+7
n, *A = map(int, open(0).read().split())
ans = 0
t = 1
L = [1, 2]
for _ in range(n-2):
    L.append(L[-1] * 3 % mod)
for i in range(n):
    t = t*A[i]%mod
    ans += t*L[~i]
    ans %= mod
print(ans)
0