結果

問題 No.1681 +-*
ユーザー lloyzlloyz
提出日時 2021-11-15 23:44:23
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 696 ms / 2,000 ms
コード長 281 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 32,688 KB
最終ジャッジ日時 2024-05-09 00:22:13
合計ジャッジ時間 10,555 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 31 ms
10,880 KB
testcase_03 AC 30 ms
10,880 KB
testcase_04 AC 36 ms
10,624 KB
testcase_05 AC 623 ms
28,524 KB
testcase_06 AC 636 ms
28,656 KB
testcase_07 AC 633 ms
28,528 KB
testcase_08 AC 689 ms
32,636 KB
testcase_09 AC 695 ms
32,628 KB
testcase_10 AC 685 ms
32,688 KB
testcase_11 AC 683 ms
32,584 KB
testcase_12 AC 696 ms
32,632 KB
testcase_13 AC 314 ms
21,808 KB
testcase_14 AC 623 ms
32,508 KB
testcase_15 AC 30 ms
10,752 KB
testcase_16 AC 29 ms
10,752 KB
testcase_17 AC 662 ms
32,640 KB
testcase_18 AC 659 ms
32,636 KB
testcase_19 AC 690 ms
32,636 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int, input().split()))
mod = 10**9 + 7

ans = 0
curr = 1
for i in range(n):
    curr *= A[i]
    curr %= mod
    if i < n - 1:
        ans += curr * 2 * pow(3, n - i - 2, mod) % mod
    else:
        ans += curr
    ans %= mod
print(ans)
0