結果

問題 No.1681 +-*
ユーザー tcltktcltk
提出日時 2021-09-18 13:16:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 259 ms / 2,000 ms
コード長 576 bytes
コンパイル時間 143 ms
コンパイル使用メモリ 82,240 KB
実行使用メモリ 121,556 KB
最終ジャッジ日時 2024-06-30 10:41:32
合計ジャッジ時間 5,501 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
86,596 KB
testcase_01 AC 129 ms
87,080 KB
testcase_02 AC 125 ms
87,100 KB
testcase_03 AC 129 ms
86,872 KB
testcase_04 AC 127 ms
86,720 KB
testcase_05 AC 249 ms
117,728 KB
testcase_06 AC 247 ms
117,756 KB
testcase_07 AC 244 ms
117,720 KB
testcase_08 AC 258 ms
121,164 KB
testcase_09 AC 257 ms
121,480 KB
testcase_10 AC 254 ms
121,508 KB
testcase_11 AC 258 ms
120,912 KB
testcase_12 AC 256 ms
121,424 KB
testcase_13 AC 193 ms
103,908 KB
testcase_14 AC 258 ms
121,236 KB
testcase_15 AC 121 ms
86,484 KB
testcase_16 AC 124 ms
86,956 KB
testcase_17 AC 259 ms
121,404 KB
testcase_18 AC 253 ms
121,556 KB
testcase_19 AC 257 ms
121,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
# from typing import *

import sys
import io
import math
import collections
import decimal
import itertools
import bisect
import heapq


def input():
    return sys.stdin.readline()[:-1]


# sys.setrecursionlimit(1000000)

# _INPUT = """3
# 1 2 3
# """
# sys.stdin = io.StringIO(_INPUT)

INF = 10**10

MOD = 1000000007

N = int(input())
A = list(map(int, input().split()))

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