結果

問題 No.797 Noelちゃんとピラミッド
ユーザー roarisroaris
提出日時 2019-08-12 10:36:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 260 ms / 2,000 ms
コード長 340 bytes
コンパイル時間 524 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 99,200 KB
最終ジャッジ日時 2024-09-15 07:35:00
合計ジャッジ時間 11,820 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,712 KB
testcase_01 AC 41 ms
51,840 KB
testcase_02 AC 41 ms
51,456 KB
testcase_03 AC 259 ms
98,560 KB
testcase_04 AC 257 ms
98,816 KB
testcase_05 AC 257 ms
98,688 KB
testcase_06 AC 257 ms
98,688 KB
testcase_07 AC 257 ms
98,560 KB
testcase_08 AC 258 ms
98,560 KB
testcase_09 AC 258 ms
99,072 KB
testcase_10 AC 260 ms
98,816 KB
testcase_11 AC 259 ms
99,072 KB
testcase_12 AC 257 ms
98,816 KB
testcase_13 AC 258 ms
98,560 KB
testcase_14 AC 258 ms
98,560 KB
testcase_15 AC 257 ms
98,816 KB
testcase_16 AC 258 ms
98,816 KB
testcase_17 AC 257 ms
99,200 KB
testcase_18 AC 257 ms
98,560 KB
testcase_19 AC 256 ms
98,560 KB
testcase_20 AC 258 ms
98,560 KB
testcase_21 AC 256 ms
98,560 KB
testcase_22 AC 256 ms
98,560 KB
testcase_23 AC 201 ms
90,496 KB
testcase_24 AC 110 ms
78,208 KB
testcase_25 AC 182 ms
88,576 KB
testcase_26 AC 174 ms
86,656 KB
testcase_27 AC 252 ms
98,432 KB
testcase_28 AC 236 ms
96,384 KB
testcase_29 AC 85 ms
72,576 KB
testcase_30 AC 105 ms
78,080 KB
testcase_31 AC 200 ms
90,624 KB
testcase_32 AC 122 ms
80,256 KB
testcase_33 AC 178 ms
88,320 KB
testcase_34 AC 146 ms
83,712 KB
testcase_35 AC 255 ms
98,688 KB
testcase_36 AC 81 ms
71,168 KB
testcase_37 AC 233 ms
95,744 KB
testcase_38 AC 241 ms
97,792 KB
testcase_39 AC 175 ms
87,680 KB
testcase_40 AC 81 ms
70,912 KB
testcase_41 AC 94 ms
75,008 KB
testcase_42 AC 171 ms
86,656 KB
testcase_43 AC 41 ms
52,096 KB
testcase_44 AC 40 ms
51,840 KB
testcase_45 AC 40 ms
51,840 KB
testcase_46 AC 40 ms
51,456 KB
testcase_47 AC 40 ms
51,840 KB
testcase_48 AC 40 ms
51,584 KB
testcase_49 AC 40 ms
51,840 KB
testcase_50 AC 41 ms
51,584 KB
testcase_51 AC 40 ms
51,968 KB
testcase_52 AC 40 ms
51,456 KB
testcase_53 AC 39 ms
51,840 KB
testcase_54 AC 40 ms
51,712 KB
testcase_55 AC 40 ms
51,584 KB
testcase_56 AC 40 ms
51,712 KB
testcase_57 AC 40 ms
52,096 KB
testcase_58 AC 41 ms
51,584 KB
testcase_59 AC 40 ms
51,840 KB
testcase_60 AC 40 ms
51,968 KB
testcase_61 AC 40 ms
51,584 KB
testcase_62 AC 40 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def inv(x):
    return pow(x, MOD-2, MOD)

def C(n, r):
    return fact[n] * inv(fact[r]) * inv(fact[n-r])

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

fact = [1]

for i in range(1, N+1):
    fact.append(fact[-1] * i % MOD)
    
ans = 0

for i in range(N):
    ans += C(N-1, i) * a[i]
    ans %= MOD

print(ans)
0