結果

問題 No.797 Noelちゃんとピラミッド
ユーザー ttrttr
提出日時 2020-06-29 20:24:42
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 285 ms / 2,000 ms
コード長 575 bytes
コンパイル時間 79 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 28,236 KB
最終ジャッジ日時 2024-07-19 05:59:23
合計ジャッジ時間 11,734 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 27 ms
10,624 KB
testcase_02 AC 26 ms
10,624 KB
testcase_03 AC 264 ms
28,108 KB
testcase_04 AC 273 ms
28,236 KB
testcase_05 AC 276 ms
28,104 KB
testcase_06 AC 285 ms
28,164 KB
testcase_07 AC 279 ms
28,036 KB
testcase_08 AC 275 ms
28,100 KB
testcase_09 AC 271 ms
27,336 KB
testcase_10 AC 274 ms
28,224 KB
testcase_11 AC 284 ms
28,168 KB
testcase_12 AC 277 ms
28,228 KB
testcase_13 AC 273 ms
28,168 KB
testcase_14 AC 267 ms
28,184 KB
testcase_15 AC 270 ms
28,164 KB
testcase_16 AC 270 ms
28,104 KB
testcase_17 AC 281 ms
28,040 KB
testcase_18 AC 273 ms
28,052 KB
testcase_19 AC 282 ms
28,104 KB
testcase_20 AC 269 ms
28,168 KB
testcase_21 AC 272 ms
27,464 KB
testcase_22 AC 282 ms
28,112 KB
testcase_23 AC 198 ms
22,668 KB
testcase_24 AC 78 ms
14,544 KB
testcase_25 AC 179 ms
20,524 KB
testcase_26 AC 166 ms
20,008 KB
testcase_27 AC 270 ms
27,460 KB
testcase_28 AC 244 ms
25,508 KB
testcase_29 AC 55 ms
12,800 KB
testcase_30 AC 72 ms
14,436 KB
testcase_31 AC 215 ms
23,728 KB
testcase_32 AC 96 ms
15,332 KB
testcase_33 AC 170 ms
20,300 KB
testcase_34 AC 124 ms
17,388 KB
testcase_35 AC 266 ms
27,332 KB
testcase_36 AC 51 ms
12,544 KB
testcase_37 AC 244 ms
25,304 KB
testcase_38 AC 254 ms
26,300 KB
testcase_39 AC 161 ms
20,348 KB
testcase_40 AC 49 ms
12,416 KB
testcase_41 AC 60 ms
13,440 KB
testcase_42 AC 160 ms
19,436 KB
testcase_43 AC 26 ms
10,752 KB
testcase_44 AC 27 ms
10,624 KB
testcase_45 AC 26 ms
10,624 KB
testcase_46 AC 25 ms
10,752 KB
testcase_47 AC 25 ms
10,624 KB
testcase_48 AC 26 ms
10,624 KB
testcase_49 AC 24 ms
10,624 KB
testcase_50 AC 25 ms
10,624 KB
testcase_51 AC 25 ms
10,624 KB
testcase_52 AC 25 ms
10,752 KB
testcase_53 AC 25 ms
10,624 KB
testcase_54 AC 25 ms
10,496 KB
testcase_55 AC 25 ms
10,752 KB
testcase_56 AC 25 ms
10,496 KB
testcase_57 AC 24 ms
10,752 KB
testcase_58 AC 24 ms
10,624 KB
testcase_59 AC 24 ms
10,752 KB
testcase_60 AC 24 ms
10,624 KB
testcase_61 AC 26 ms
10,624 KB
testcase_62 AC 24 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = [int(a) for a in input().split()]
mod = 10**9+7


def cmb(n, r, mod):
    if ( r<0 or r>n ):
        return 0
    r = min(r, n-r)
    return g1[n] * g2[r] * g2[n-r] % mod

g1 = [1, 1] # 元テーブル
g2 = [1, 1] #逆元テーブル
inverse = [0, 1] #逆元テーブル計算用テーブル

for i in range( 2, N + 1 ):
    g1.append( ( g1[-1] * i ) % mod )
    inverse.append( ( -inverse[mod % i] * (mod//i) ) % mod )
    g2.append( (g2[-1] * inverse[-1]) % mod )


ans = 0
for i in range(N):
    ans += cmb(N-1, i, mod)*A[i]
    ans %= mod

print(ans)
0