結果

問題 No.797 Noelちゃんとピラミッド
ユーザー kurimupykurimupy
提出日時 2020-06-15 16:12:59
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 289 ms / 2,000 ms
コード長 843 bytes
コンパイル時間 118 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 29,968 KB
最終ジャッジ日時 2024-07-03 11:28:48
合計ジャッジ時間 11,920 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 29 ms
10,880 KB
testcase_02 AC 32 ms
10,752 KB
testcase_03 AC 265 ms
29,708 KB
testcase_04 AC 267 ms
29,840 KB
testcase_05 AC 262 ms
29,772 KB
testcase_06 AC 264 ms
29,780 KB
testcase_07 AC 263 ms
29,772 KB
testcase_08 AC 260 ms
29,832 KB
testcase_09 AC 260 ms
29,768 KB
testcase_10 AC 259 ms
29,904 KB
testcase_11 AC 259 ms
29,840 KB
testcase_12 AC 289 ms
29,744 KB
testcase_13 AC 266 ms
29,712 KB
testcase_14 AC 261 ms
29,904 KB
testcase_15 AC 258 ms
29,844 KB
testcase_16 AC 259 ms
29,840 KB
testcase_17 AC 260 ms
29,712 KB
testcase_18 AC 266 ms
29,900 KB
testcase_19 AC 261 ms
29,772 KB
testcase_20 AC 264 ms
29,776 KB
testcase_21 AC 265 ms
29,968 KB
testcase_22 AC 261 ms
29,708 KB
testcase_23 AC 194 ms
24,220 KB
testcase_24 AC 80 ms
14,972 KB
testcase_25 AC 167 ms
22,176 KB
testcase_26 AC 157 ms
21,432 KB
testcase_27 AC 255 ms
29,320 KB
testcase_28 AC 237 ms
27,312 KB
testcase_29 AC 58 ms
13,312 KB
testcase_30 AC 77 ms
14,576 KB
testcase_31 AC 196 ms
24,304 KB
testcase_32 AC 96 ms
16,416 KB
testcase_33 AC 160 ms
21,992 KB
testcase_34 AC 123 ms
18,556 KB
testcase_35 AC 262 ms
29,704 KB
testcase_36 AC 54 ms
12,928 KB
testcase_37 AC 238 ms
27,180 KB
testcase_38 AC 240 ms
28,048 KB
testcase_39 AC 160 ms
21,624 KB
testcase_40 AC 52 ms
12,800 KB
testcase_41 AC 66 ms
13,824 KB
testcase_42 AC 153 ms
21,244 KB
testcase_43 AC 29 ms
10,752 KB
testcase_44 AC 33 ms
10,752 KB
testcase_45 AC 29 ms
10,752 KB
testcase_46 AC 29 ms
10,752 KB
testcase_47 AC 29 ms
10,752 KB
testcase_48 AC 30 ms
10,752 KB
testcase_49 AC 29 ms
10,752 KB
testcase_50 AC 29 ms
10,752 KB
testcase_51 AC 30 ms
10,752 KB
testcase_52 AC 29 ms
10,752 KB
testcase_53 AC 30 ms
10,752 KB
testcase_54 AC 29 ms
10,752 KB
testcase_55 AC 30 ms
10,752 KB
testcase_56 AC 30 ms
10,752 KB
testcase_57 AC 30 ms
10,880 KB
testcase_58 AC 30 ms
10,752 KB
testcase_59 AC 30 ms
10,752 KB
testcase_60 AC 29 ms
10,752 KB
testcase_61 AC 30 ms
10,880 KB
testcase_62 AC 30 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


class Data():
    def __init__(self):
        self.power = 1
        self.rev = 1


class Combi():
    def __init__(self, N, mod):
        self.lists = [Data() for _ in range(N+1)]
        self.mod = mod
        for i in range(2, N+1):
            self.lists[i].power = ((self.lists[i-1].power)*i) % self.mod
        self.lists[N].rev = pow(self.lists[N].power, self.mod-2, self.mod)
        for j in range(N, 0, -1):
            self.lists[j-1].rev = ((self.lists[j].rev)*j) % self.mod

    def combi(self, K, R):
        if K < R:
            return 0
        else:
            return ((self.lists[K].power)*(self.lists[K-R].rev)*(self.lists[R].rev)) % self.mod


c = Combi(N-1, mod)
for i in range(N):
    ans += A[i]*c.combi(N-1, i)
    ans %= mod
print(ans)

0