結果

問題 No.1681 +-*
ユーザー lllllll88938494lllllll88938494
提出日時 2022-09-13 01:40:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 169 ms / 2,000 ms
コード長 272 bytes
コンパイル時間 325 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 102,172 KB
最終ジャッジ日時 2024-05-07 11:41:35
合計ジャッジ時間 3,630 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
53,132 KB
testcase_01 AC 32 ms
52,128 KB
testcase_02 AC 34 ms
53,544 KB
testcase_03 AC 33 ms
53,384 KB
testcase_04 AC 34 ms
54,208 KB
testcase_05 AC 147 ms
100,440 KB
testcase_06 AC 149 ms
100,892 KB
testcase_07 AC 148 ms
100,644 KB
testcase_08 AC 169 ms
101,756 KB
testcase_09 AC 165 ms
102,076 KB
testcase_10 AC 168 ms
101,984 KB
testcase_11 AC 164 ms
102,012 KB
testcase_12 AC 167 ms
102,000 KB
testcase_13 AC 97 ms
84,140 KB
testcase_14 AC 168 ms
101,872 KB
testcase_15 AC 33 ms
53,552 KB
testcase_16 AC 32 ms
52,616 KB
testcase_17 AC 167 ms
101,984 KB
testcase_18 AC 167 ms
102,172 KB
testcase_19 AC 168 ms
101,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

print(ans)
0