結果

問題 No.1681 +-*
ユーザー ygussanyygussany
提出日時 2021-08-15 12:44:44
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 31 ms / 2,000 ms
コード長 415 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 29,440 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-29 19:28:39
合計ジャッジ時間 1,464 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <stdio.h>

const int Mod = 1000000007;

int main()
{
	int i, N, A[200001];
	long long ans = 0, tmp, pow[200001];
	scanf("%d", &N);
	for (i = 1; i <= N; i++) scanf("%d", &(A[i]));
	for (i = 1, pow[0] = 1; i <= N; i++) pow[i] = pow[i-1] * 3 % Mod;
	for (i = 1, tmp = A[1]; i < N; tmp = tmp * A[++i] % Mod) ans += tmp * pow[N-i-1] * 2 % Mod;
	printf("%lld\n", (ans + tmp) % Mod);
	fflush(stdout);
	return 0;
}
0