結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,617 ms
167,552 KB
testcase_01 AC 1,578 ms
167,380 KB
testcase_02 AC 1,682 ms
167,424 KB
testcase_03 AC 1,723 ms
172,156 KB
testcase_04 AC 1,771 ms
172,144 KB
testcase_05 AC 1,741 ms
172,104 KB
testcase_06 AC 1,756 ms
172,240 KB
testcase_07 AC 1,698 ms
172,060 KB
testcase_08 AC 1,753 ms
172,108 KB
testcase_09 AC 1,734 ms
172,256 KB
testcase_10 AC 1,693 ms
172,120 KB
testcase_11 AC 1,733 ms
172,024 KB
testcase_12 AC 1,723 ms
172,220 KB
testcase_13 AC 1,704 ms
172,044 KB
testcase_14 AC 1,720 ms
172,208 KB
testcase_15 AC 1,713 ms
172,156 KB
testcase_16 AC 1,770 ms
172,056 KB
testcase_17 AC 1,717 ms
172,208 KB
testcase_18 AC 1,733 ms
172,040 KB
testcase_19 AC 1,725 ms
172,248 KB
testcase_20 AC 1,735 ms
172,020 KB
testcase_21 AC 1,706 ms
172,252 KB
testcase_22 AC 1,750 ms
172,188 KB
testcase_23 AC 1,662 ms
170,796 KB
testcase_24 AC 1,633 ms
168,592 KB
testcase_25 AC 1,682 ms
170,376 KB
testcase_26 AC 1,679 ms
170,000 KB
testcase_27 AC 1,730 ms
171,940 KB
testcase_28 AC 1,690 ms
171,608 KB
testcase_29 AC 1,593 ms
168,164 KB
testcase_30 AC 1,668 ms
168,544 KB
testcase_31 AC 1,686 ms
171,000 KB
testcase_32 AC 1,672 ms
168,960 KB
testcase_33 AC 1,707 ms
170,160 KB
testcase_34 AC 1,670 ms
169,356 KB
testcase_35 AC 1,742 ms
172,196 KB
testcase_36 AC 1,600 ms
168,040 KB
testcase_37 AC 1,736 ms
171,436 KB
testcase_38 AC 1,740 ms
171,660 KB
testcase_39 AC 1,699 ms
170,224 KB
testcase_40 AC 1,846 ms
167,936 KB
testcase_41 AC 1,589 ms
168,124 KB
testcase_42 AC 1,678 ms
170,132 KB
testcase_43 AC 1,619 ms
167,400 KB
testcase_44 AC 1,607 ms
167,392 KB
testcase_45 AC 1,651 ms
167,520 KB
testcase_46 AC 1,588 ms
167,492 KB
testcase_47 AC 1,770 ms
167,552 KB
testcase_48 AC 1,646 ms
167,424 KB
testcase_49 AC 1,610 ms
167,312 KB
testcase_50 AC 1,611 ms
167,480 KB
testcase_51 AC 1,661 ms
167,552 KB
testcase_52 AC 1,600 ms
167,296 KB
testcase_53 AC 1,616 ms
167,296 KB
testcase_54 AC 1,612 ms
167,384 KB
testcase_55 AC 1,641 ms
167,296 KB
testcase_56 AC 1,784 ms
167,376 KB
testcase_57 AC 1,595 ms
167,424 KB
testcase_58 AC 1,591 ms
167,424 KB
testcase_59 AC 1,583 ms
167,324 KB
testcase_60 AC 1,621 ms
167,424 KB
testcase_61 AC 1,596 ms
167,296 KB
testcase_62 AC 1,626 ms
167,424 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**6+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