結果

問題 No.797 Noelちゃんとピラミッド
ユーザー takakintakakin
提出日時 2020-05-24 15:26:54
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 328 ms / 2,000 ms
コード長 468 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 31,188 KB
最終ジャッジ日時 2024-10-11 18:41:29
合計ジャッジ時間 19,367 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 191 ms
26,368 KB
testcase_01 AC 190 ms
26,368 KB
testcase_02 AC 216 ms
26,240 KB
testcase_03 AC 328 ms
30,992 KB
testcase_04 AC 305 ms
30,920 KB
testcase_05 AC 307 ms
30,988 KB
testcase_06 AC 312 ms
31,180 KB
testcase_07 AC 312 ms
31,048 KB
testcase_08 AC 305 ms
30,984 KB
testcase_09 AC 312 ms
30,972 KB
testcase_10 AC 310 ms
31,056 KB
testcase_11 AC 318 ms
31,112 KB
testcase_12 AC 312 ms
31,052 KB
testcase_13 AC 315 ms
31,176 KB
testcase_14 AC 308 ms
31,180 KB
testcase_15 AC 316 ms
31,052 KB
testcase_16 AC 309 ms
31,056 KB
testcase_17 AC 309 ms
31,116 KB
testcase_18 AC 312 ms
31,048 KB
testcase_19 AC 306 ms
31,052 KB
testcase_20 AC 309 ms
31,056 KB
testcase_21 AC 310 ms
31,180 KB
testcase_22 AC 312 ms
31,188 KB
testcase_23 AC 293 ms
29,848 KB
testcase_24 AC 219 ms
27,480 KB
testcase_25 AC 261 ms
28,980 KB
testcase_26 AC 257 ms
29,104 KB
testcase_27 AC 308 ms
30,928 KB
testcase_28 AC 291 ms
30,572 KB
testcase_29 AC 202 ms
26,880 KB
testcase_30 AC 218 ms
27,480 KB
testcase_31 AC 274 ms
29,744 KB
testcase_32 AC 222 ms
27,756 KB
testcase_33 AC 279 ms
29,140 KB
testcase_34 AC 237 ms
28,268 KB
testcase_35 AC 306 ms
31,052 KB
testcase_36 AC 200 ms
26,880 KB
testcase_37 AC 296 ms
30,448 KB
testcase_38 AC 301 ms
30,788 KB
testcase_39 AC 256 ms
29,060 KB
testcase_40 AC 206 ms
26,880 KB
testcase_41 AC 206 ms
27,252 KB
testcase_42 AC 259 ms
29,040 KB
testcase_43 AC 189 ms
26,240 KB
testcase_44 AC 214 ms
26,240 KB
testcase_45 AC 187 ms
26,368 KB
testcase_46 AC 192 ms
26,112 KB
testcase_47 AC 202 ms
26,112 KB
testcase_48 AC 189 ms
26,368 KB
testcase_49 AC 196 ms
26,368 KB
testcase_50 AC 191 ms
26,368 KB
testcase_51 AC 191 ms
26,240 KB
testcase_52 AC 188 ms
26,240 KB
testcase_53 AC 189 ms
26,368 KB
testcase_54 AC 194 ms
26,240 KB
testcase_55 AC 192 ms
26,240 KB
testcase_56 AC 191 ms
26,368 KB
testcase_57 AC 189 ms
26,240 KB
testcase_58 AC 187 ms
26,368 KB
testcase_59 AC 211 ms
26,368 KB
testcase_60 AC 186 ms
26,368 KB
testcase_61 AC 189 ms
26,240 KB
testcase_62 AC 190 ms
26,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda: sys.stdin.readline().rstrip()
n=int(input())
mod=10**9+7
A=[int(i) for i in input().split()]

mod=10**9+7
n_max=2*(10**5+1)
F,FI=[0]*(n_max+1),[0]*(n_max+1)
F[0],FI[0]=1,1
for i in range(n_max):
  F[i+1]=(F[i]*(i+1))%mod
FI[n_max-1]=pow(F[n_max-1],mod-2,mod)
for i in reversed(range(n_max-1)):
  FI[i]=(FI[i+1]*(i+1))%mod
def comb(x,y):
  return (F[x]*FI[x-y]*FI[y])%mod

ans=0
for i,a in enumerate(A):
  ans=(ans+a*comb(n-1,i))%mod
print(ans)
0