結果

問題 No.1681 +-*
ユーザー lllllll88938494lllllll88938494
提出日時 2022-09-13 01:40:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 183 ms / 2,000 ms
コード長 272 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 102,144 KB
最終ジャッジ日時 2024-11-30 04:10:01
合計ジャッジ時間 4,010 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,576 KB
testcase_01 AC 38 ms
51,884 KB
testcase_02 AC 39 ms
53,404 KB
testcase_03 AC 39 ms
54,140 KB
testcase_04 AC 40 ms
54,524 KB
testcase_05 AC 164 ms
100,656 KB
testcase_06 AC 162 ms
100,188 KB
testcase_07 AC 162 ms
100,464 KB
testcase_08 AC 183 ms
101,988 KB
testcase_09 AC 180 ms
102,024 KB
testcase_10 AC 182 ms
101,916 KB
testcase_11 AC 182 ms
102,132 KB
testcase_12 AC 181 ms
102,144 KB
testcase_13 AC 104 ms
83,756 KB
testcase_14 AC 180 ms
101,880 KB
testcase_15 AC 36 ms
52,740 KB
testcase_16 AC 37 ms
53,636 KB
testcase_17 AC 181 ms
102,000 KB
testcase_18 AC 181 ms
101,748 KB
testcase_19 AC 181 ms
102,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=list(map(int,input().split()))
ans=0
now=a[0]
mod=10**9+7
for i in range(n):
    if i < n-1:
        ans += now * 2 * max(pow(3,(n-2-i),mod),1)
        now*=a[i+1]
        now%=mod
        ans%=mod
    else:
        ans += now
        ans%=mod

print(ans)
0