結果

問題 No.797 Noelちゃんとピラミッド
ユーザー 双六双六
提出日時 2020-07-28 01:03:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 104 ms / 2,000 ms
コード長 937 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 91,904 KB
最終ジャッジ日時 2024-06-28 20:27:38
合計ジャッジ時間 7,440 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
53,504 KB
testcase_01 AC 44 ms
53,504 KB
testcase_02 AC 46 ms
53,632 KB
testcase_03 AC 104 ms
91,776 KB
testcase_04 AC 94 ms
91,776 KB
testcase_05 AC 98 ms
91,904 KB
testcase_06 AC 95 ms
91,648 KB
testcase_07 AC 95 ms
91,648 KB
testcase_08 AC 93 ms
91,648 KB
testcase_09 AC 96 ms
91,904 KB
testcase_10 AC 94 ms
91,448 KB
testcase_11 AC 99 ms
91,520 KB
testcase_12 AC 94 ms
91,652 KB
testcase_13 AC 100 ms
91,392 KB
testcase_14 AC 92 ms
91,776 KB
testcase_15 AC 97 ms
91,684 KB
testcase_16 AC 92 ms
91,904 KB
testcase_17 AC 99 ms
91,520 KB
testcase_18 AC 93 ms
91,648 KB
testcase_19 AC 97 ms
91,392 KB
testcase_20 AC 95 ms
91,776 KB
testcase_21 AC 99 ms
91,776 KB
testcase_22 AC 96 ms
91,520 KB
testcase_23 AC 87 ms
86,144 KB
testcase_24 AC 59 ms
69,516 KB
testcase_25 AC 80 ms
82,304 KB
testcase_26 AC 74 ms
80,768 KB
testcase_27 AC 99 ms
91,520 KB
testcase_28 AC 90 ms
89,728 KB
testcase_29 AC 60 ms
66,560 KB
testcase_30 AC 63 ms
69,120 KB
testcase_31 AC 89 ms
86,528 KB
testcase_32 AC 62 ms
72,320 KB
testcase_33 AC 80 ms
81,920 KB
testcase_34 AC 67 ms
75,904 KB
testcase_35 AC 99 ms
91,648 KB
testcase_36 AC 55 ms
65,784 KB
testcase_37 AC 97 ms
89,728 KB
testcase_38 AC 92 ms
91,520 KB
testcase_39 AC 79 ms
81,664 KB
testcase_40 AC 58 ms
65,536 KB
testcase_41 AC 60 ms
67,968 KB
testcase_42 AC 76 ms
80,512 KB
testcase_43 AC 44 ms
53,888 KB
testcase_44 AC 44 ms
54,144 KB
testcase_45 AC 43 ms
54,144 KB
testcase_46 AC 44 ms
53,504 KB
testcase_47 AC 44 ms
53,376 KB
testcase_48 AC 43 ms
53,888 KB
testcase_49 AC 42 ms
53,504 KB
testcase_50 AC 44 ms
53,504 KB
testcase_51 AC 46 ms
53,888 KB
testcase_52 AC 45 ms
53,504 KB
testcase_53 AC 45 ms
53,760 KB
testcase_54 AC 44 ms
53,632 KB
testcase_55 AC 52 ms
53,504 KB
testcase_56 AC 44 ms
53,376 KB
testcase_57 AC 45 ms
53,888 KB
testcase_58 AC 44 ms
53,632 KB
testcase_59 AC 44 ms
53,504 KB
testcase_60 AC 45 ms
53,632 KB
testcase_61 AC 45 ms
53,632 KB
testcase_62 AC 45 ms
53,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys; input = sys.stdin.buffer.readline
sys.setrecursionlimit(10**7)
from collections import defaultdict
con = 10 ** 9 + 7; INF = float("inf")

def getlist():
	return list(map(int, input().split()))

class Combination(object):
	def __init__(self, N, con):
		self.fac = [0] * (N + 1)
		self.inv = [0] * (N + 1)
		self.finv = [0] * (N + 1)
		self.fac[0], self.fac[1] = 1, 1
		self.inv[1] = 1
		self.finv[0], self.finv[1] = 1, 1

		# 前計算
		for i in range(2, N + 1):
			self.fac[i] = self.fac[i - 1] * i % con
			self.inv[i] = self.inv[con % i] * (con - (con // i)) % con
			self.finv[i] = self.finv[i - 1] * self.inv[i] % con

	def com(self, N, k):
		return (self.fac[N] * self.finv[k] * self.finv[N - k]) % con

#処理内容
def main():
	N = int(input())
	A = getlist()
	ans = 0
	Com = Combination(N - 1, con)
	for i in range(N):
		ans += A[i] * Com.com(N - 1, i)
		ans %= con

	print(ans)


if __name__ == '__main__':
	main()
0