結果

問題 No.1681 +-*
ユーザー Mik10Mik10
提出日時 2021-10-07 23:30:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 183 ms / 2,000 ms
コード長 263 bytes
コンパイル時間 229 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 102,324 KB
最終ジャッジ日時 2024-07-23 03:10:17
合計ジャッジ時間 3,243 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,004 KB
testcase_01 AC 38 ms
53,648 KB
testcase_02 AC 39 ms
52,260 KB
testcase_03 AC 38 ms
53,360 KB
testcase_04 AC 39 ms
53,016 KB
testcase_05 AC 76 ms
98,852 KB
testcase_06 AC 76 ms
99,248 KB
testcase_07 AC 79 ms
100,432 KB
testcase_08 AC 180 ms
102,324 KB
testcase_09 AC 182 ms
102,072 KB
testcase_10 AC 182 ms
101,960 KB
testcase_11 AC 182 ms
102,096 KB
testcase_12 AC 182 ms
102,128 KB
testcase_13 AC 61 ms
82,104 KB
testcase_14 AC 94 ms
102,184 KB
testcase_15 AC 37 ms
52,880 KB
testcase_16 AC 38 ms
52,336 KB
testcase_17 AC 141 ms
102,216 KB
testcase_18 AC 132 ms
102,172 KB
testcase_19 AC 183 ms
102,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
seql = list(map(int, input().split()))
n -= 2
ans = 0
z = 10**9+7
for i in range(n+1):
    p = seql[i]
    if not p:
        break
    seql[i+1] = seql[i+1]*p%z
    ans = (ans+pow(3, n, z)*2*p)%z
    n -= 1
else:
    ans += seql[-1]
print (ans%z)
0