結果

問題 No.1681 +-*
ユーザー hitonanodehitonanode
提出日時 2021-08-08 16:47:51
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 308 bytes
コンパイル時間 135 ms
コンパイル使用メモリ 82,056 KB
実行使用メモリ 109,220 KB
最終ジャッジ日時 2024-06-29 19:23:52
合計ジャッジ時間 4,226 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
59,348 KB
testcase_01 AC 37 ms
52,688 KB
testcase_02 AC 37 ms
53,068 KB
testcase_03 AC 37 ms
53,124 KB
testcase_04 AC 35 ms
53,224 KB
testcase_05 AC 69 ms
99,448 KB
testcase_06 AC 70 ms
99,460 KB
testcase_07 AC 78 ms
102,976 KB
testcase_08 TLE -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

md = 1000000007

ret, prod = 0, 1
d23 = 2 * pow(3, md - 2, md) % md

for i, a in enumerate(A):
    ret = ret * 3 % md
    if prod:
        prod *= a  # mod をとっていない
        ret += prod * (d23 if i < N - 1 else 1) % md

print(ret % md)
0