結果

問題 No.797 Noelちゃんとピラミッド
ユーザー 👑 KazunKazun
提出日時 2020-05-31 18:00:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 95 ms / 2,000 ms
コード長 362 bytes
コンパイル時間 225 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 99,456 KB
最終ジャッジ日時 2024-11-17 21:50:55
合計ジャッジ時間 7,366 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,584 KB
testcase_01 AC 37 ms
52,096 KB
testcase_02 AC 37 ms
52,084 KB
testcase_03 AC 94 ms
98,968 KB
testcase_04 AC 93 ms
99,316 KB
testcase_05 AC 90 ms
99,328 KB
testcase_06 AC 91 ms
99,232 KB
testcase_07 AC 89 ms
99,032 KB
testcase_08 AC 89 ms
99,328 KB
testcase_09 AC 90 ms
98,948 KB
testcase_10 AC 90 ms
98,948 KB
testcase_11 AC 88 ms
99,456 KB
testcase_12 AC 89 ms
98,876 KB
testcase_13 AC 91 ms
99,152 KB
testcase_14 AC 90 ms
99,084 KB
testcase_15 AC 90 ms
99,328 KB
testcase_16 AC 89 ms
98,900 KB
testcase_17 AC 89 ms
99,360 KB
testcase_18 AC 89 ms
99,328 KB
testcase_19 AC 92 ms
98,944 KB
testcase_20 AC 94 ms
99,200 KB
testcase_21 AC 95 ms
99,164 KB
testcase_22 AC 95 ms
99,216 KB
testcase_23 AC 81 ms
91,264 KB
testcase_24 AC 54 ms
70,528 KB
testcase_25 AC 74 ms
88,944 KB
testcase_26 AC 68 ms
85,208 KB
testcase_27 AC 87 ms
98,944 KB
testcase_28 AC 85 ms
96,000 KB
testcase_29 AC 50 ms
66,560 KB
testcase_30 AC 54 ms
70,400 KB
testcase_31 AC 77 ms
90,916 KB
testcase_32 AC 58 ms
74,240 KB
testcase_33 AC 71 ms
87,060 KB
testcase_34 AC 63 ms
79,616 KB
testcase_35 AC 91 ms
99,328 KB
testcase_36 AC 52 ms
65,152 KB
testcase_37 AC 87 ms
96,256 KB
testcase_38 AC 89 ms
97,816 KB
testcase_39 AC 69 ms
86,932 KB
testcase_40 AC 51 ms
65,024 KB
testcase_41 AC 52 ms
67,968 KB
testcase_42 AC 69 ms
85,588 KB
testcase_43 AC 37 ms
52,096 KB
testcase_44 AC 38 ms
52,224 KB
testcase_45 AC 37 ms
52,224 KB
testcase_46 AC 37 ms
52,096 KB
testcase_47 AC 37 ms
51,840 KB
testcase_48 AC 38 ms
52,096 KB
testcase_49 AC 36 ms
52,096 KB
testcase_50 AC 38 ms
51,712 KB
testcase_51 AC 37 ms
51,968 KB
testcase_52 AC 37 ms
52,096 KB
testcase_53 AC 38 ms
52,096 KB
testcase_54 AC 37 ms
52,352 KB
testcase_55 AC 38 ms
51,968 KB
testcase_56 AC 38 ms
52,224 KB
testcase_57 AC 39 ms
51,968 KB
testcase_58 AC 38 ms
52,096 KB
testcase_59 AC 38 ms
52,224 KB
testcase_60 AC 37 ms
52,480 KB
testcase_61 AC 38 ms
52,352 KB
testcase_62 AC 37 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

M=10**9+7
N=int(input())

F=[1]
for i in range(1,N+1):
    F.append((F[-1]*i)%M)

G=[0]*(N+1)
G[N]=pow(F[N],M-2,M)

for i in range(N-1,-1,-1):
    G[i]=(G[i+1]*(i+1))%M

def nCr(n,r):
    if r<0 or n<r:
        return 0
    else:
        return (F[n]*G[r]*G[n-r])%M

A=list(map(int,input().split()))
S=0

for i in range(N):
    S=(S+A[i]*nCr(N-1,i))%M

print(S)
0