結果

問題 No.1681 +-*
ユーザー erbowlerbowl
提出日時 2022-08-28 15:42:37
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 106 ms / 2,000 ms
コード長 728 bytes
コンパイル時間 2,039 ms
コンパイル使用メモリ 196,120 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-04-23 14:02:14
合計ジャッジ時間 4,726 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 68 ms
6,940 KB
testcase_06 AC 66 ms
6,940 KB
testcase_07 AC 66 ms
6,944 KB
testcase_08 AC 105 ms
6,940 KB
testcase_09 AC 105 ms
6,940 KB
testcase_10 AC 106 ms
6,944 KB
testcase_11 AC 105 ms
6,944 KB
testcase_12 AC 106 ms
6,940 KB
testcase_13 AC 53 ms
6,944 KB
testcase_14 AC 105 ms
6,944 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 106 ms
6,940 KB
testcase_18 AC 106 ms
6,948 KB
testcase_19 AC 106 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

typedef long long ll;
typedef long double ld;
#include <bits/stdc++.h>
using namespace std;
#define int long long

long long modpow(long long a, long long n, long long mod) {
    long long res = 1;
    while (n > 0) {
        if (n & 1) res = res * a % mod;
        a = a * a % mod;
        n >>= 1;
    }
    return res;
}
const ll MOD = 1e9+7;
signed main(){
    ll n;
    std::cin >> n;
    vector<ll> a(n);
    ll now = 1;
    ll ans = 0;
    for (int i = 0; i < n; i++) {
        std::cin >> a[i];
        now *= a[i];
        now %= MOD;
        ans += now*modpow(3,max(0ll,n-2-i),MOD)%MOD*(2*(i<n-1)+1*(i>=n-1))%MOD;
        ans %= MOD;
        // std::cout << ans << std::endl;
    }
    std::cout << ans << std::endl;
}
0