結果

問題 No.1681 +-*
ユーザー titiatitia
提出日時 2021-09-18 01:27:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 411 ms / 2,000 ms
コード長 305 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 81,856 KB
実行使用メモリ 104,888 KB
最終ジャッジ日時 2024-06-30 00:13:03
合計ジャッジ時間 6,602 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,376 KB
testcase_01 AC 37 ms
53,092 KB
testcase_02 AC 40 ms
52,508 KB
testcase_03 AC 40 ms
52,492 KB
testcase_04 AC 41 ms
52,920 KB
testcase_05 AC 373 ms
104,888 KB
testcase_06 AC 373 ms
104,536 KB
testcase_07 AC 377 ms
104,648 KB
testcase_08 AC 407 ms
102,064 KB
testcase_09 AC 407 ms
101,872 KB
testcase_10 AC 411 ms
101,956 KB
testcase_11 AC 408 ms
101,944 KB
testcase_12 AC 410 ms
101,980 KB
testcase_13 AC 211 ms
86,820 KB
testcase_14 AC 385 ms
101,948 KB
testcase_15 AC 37 ms
52,312 KB
testcase_16 AC 37 ms
52,432 KB
testcase_17 AC 405 ms
101,788 KB
testcase_18 AC 401 ms
101,652 KB
testcase_19 AC 407 ms
101,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ANS=0
K=1

ALL=pow(3,N-1,mod)

for i in range(N):
    K=K*A[i]%mod

    if i!=N-1:
        ANS=ANS+K*ALL*2*pow(3,mod-2,mod)
    else:
        ANS=ANS+K*ALL
        
    ANS%=mod
    ALL=ALL*pow(3,mod-2,mod)%mod

    #print(ANS,ALL)

print(ANS)
0