結果

問題 No.1681 +-*
ユーザー playerplayer
提出日時 2023-12-27 14:12:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 191 ms / 2,000 ms
コード長 502 bytes
コンパイル時間 483 ms
コンパイル使用メモリ 82,276 KB
実行使用メモリ 102,180 KB
最終ジャッジ日時 2024-09-27 15:32:18
合計ジャッジ時間 4,862 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,112 KB
testcase_01 AC 41 ms
52,632 KB
testcase_02 AC 42 ms
53,100 KB
testcase_03 AC 42 ms
52,856 KB
testcase_04 AC 42 ms
53,620 KB
testcase_05 AC 172 ms
100,712 KB
testcase_06 AC 171 ms
100,996 KB
testcase_07 AC 169 ms
101,288 KB
testcase_08 AC 188 ms
102,164 KB
testcase_09 AC 190 ms
102,180 KB
testcase_10 AC 189 ms
101,984 KB
testcase_11 AC 188 ms
102,136 KB
testcase_12 AC 191 ms
101,968 KB
testcase_13 AC 110 ms
85,056 KB
testcase_14 AC 190 ms
101,676 KB
testcase_15 AC 39 ms
53,008 KB
testcase_16 AC 39 ms
52,288 KB
testcase_17 AC 190 ms
102,172 KB
testcase_18 AC 188 ms
101,656 KB
testcase_19 AC 190 ms
102,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ans = 0

# 全て*の場合を先に加算
num1 = 1
for i in range(n):
    num1 *= a[i]
    num1 %= mod
ans += num1

for i in range(n-1):
    if i == 0:
        former = a[i]
        tmp = 2*pow(3,n-i-2,mod)
        tmp %= mod
        ans += former*tmp
        ans %= mod
    else:
        former *= a[i]
        tmp = 2*pow(3,n-i-2,mod)
        tmp %= mod
        former %= mod
        ans += former*tmp
        ans %= mod

print(ans)
0