結果

問題 No.1681 +-*
ユーザー nebukuro09nebukuro09
提出日時 2021-09-17 21:44:53
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 146 ms / 2,000 ms
コード長 848 bytes
コンパイル時間 909 ms
コンパイル使用メモリ 120,240 KB
実行使用メモリ 12,224 KB
最終ジャッジ日時 2024-06-22 12:30:46
合計ジャッジ時間 4,159 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 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 126 ms
7,632 KB
testcase_06 AC 125 ms
7,720 KB
testcase_07 AC 124 ms
8,236 KB
testcase_08 AC 135 ms
11,620 KB
testcase_09 AC 137 ms
12,012 KB
testcase_10 AC 136 ms
11,356 KB
testcase_11 AC 137 ms
11,984 KB
testcase_12 AC 146 ms
12,048 KB
testcase_13 AC 70 ms
6,944 KB
testcase_14 AC 137 ms
11,808 KB
testcase_15 AC 1 ms
6,944 KB
testcase_16 AC 1 ms
6,940 KB
testcase_17 AC 142 ms
12,140 KB
testcase_18 AC 136 ms
12,224 KB
testcase_19 AC 143 ms
11,364 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.stdio, std.array, std.string, std.conv, std.algorithm;
import std.typecons, std.range, std.random, std.math, std.container;
import std.numeric, std.bigint, core.bitop;

immutable long MOD = 10^^9 + 7;

void main() {
    auto N = readln.chomp.to!int;
    auto A = readln.split.map!(to!long).array;

    long ans = 0;
    long pro = 1;
    long co = 2;
    foreach (i; 0..N-2) co = co * 3 % MOD;

    foreach (i, a; A) {
        pro = pro * a % MOD;
        (ans += pro * co) %= MOD;
        if (i + 2 == N) {
            co = co * powmod(2, MOD-2, MOD) % MOD;
        } else {
            co = co * powmod(3, MOD-2, MOD) % MOD;
        }
    }

    ans.writeln;
}

long powmod(long a, long x, long m) {
    long ret = 1;
    while (x) {
        if (x % 2) ret = ret * a % m;
        a = a * a % m;
        x /= 2;
    }
    return ret;
}
0