結果

問題 No.797 Noelちゃんとピラミッド
ユーザー terasaterasa
提出日時 2022-06-29 14:21:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 2,054 bytes
コンパイル時間 303 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 96,128 KB
最終ジャッジ日時 2024-05-02 05:29:12
合計ジャッジ時間 9,642 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
67,840 KB
testcase_01 AC 75 ms
67,456 KB
testcase_02 AC 73 ms
68,224 KB
testcase_03 AC 130 ms
95,488 KB
testcase_04 AC 130 ms
96,000 KB
testcase_05 AC 128 ms
95,872 KB
testcase_06 AC 127 ms
96,000 KB
testcase_07 AC 127 ms
95,872 KB
testcase_08 AC 128 ms
95,488 KB
testcase_09 AC 128 ms
95,744 KB
testcase_10 AC 129 ms
95,744 KB
testcase_11 AC 128 ms
96,000 KB
testcase_12 AC 128 ms
95,744 KB
testcase_13 AC 130 ms
95,872 KB
testcase_14 AC 128 ms
95,360 KB
testcase_15 AC 130 ms
95,872 KB
testcase_16 AC 129 ms
95,360 KB
testcase_17 AC 129 ms
96,128 KB
testcase_18 AC 129 ms
95,872 KB
testcase_19 AC 131 ms
96,128 KB
testcase_20 AC 129 ms
95,872 KB
testcase_21 AC 127 ms
95,360 KB
testcase_22 AC 130 ms
95,872 KB
testcase_23 AC 116 ms
92,288 KB
testcase_24 AC 103 ms
84,736 KB
testcase_25 AC 119 ms
91,392 KB
testcase_26 AC 115 ms
90,496 KB
testcase_27 AC 131 ms
95,616 KB
testcase_28 AC 129 ms
94,720 KB
testcase_29 AC 99 ms
83,200 KB
testcase_30 AC 104 ms
84,352 KB
testcase_31 AC 119 ms
92,544 KB
testcase_32 AC 106 ms
85,632 KB
testcase_33 AC 116 ms
91,008 KB
testcase_34 AC 111 ms
88,064 KB
testcase_35 AC 130 ms
95,488 KB
testcase_36 AC 100 ms
83,200 KB
testcase_37 AC 127 ms
94,720 KB
testcase_38 AC 128 ms
96,128 KB
testcase_39 AC 117 ms
91,264 KB
testcase_40 AC 100 ms
83,072 KB
testcase_41 AC 102 ms
83,968 KB
testcase_42 AC 115 ms
90,112 KB
testcase_43 AC 73 ms
67,968 KB
testcase_44 AC 73 ms
67,968 KB
testcase_45 AC 72 ms
67,840 KB
testcase_46 AC 72 ms
67,840 KB
testcase_47 AC 74 ms
68,096 KB
testcase_48 AC 76 ms
67,456 KB
testcase_49 AC 75 ms
67,840 KB
testcase_50 AC 75 ms
68,096 KB
testcase_51 AC 76 ms
67,840 KB
testcase_52 AC 75 ms
67,968 KB
testcase_53 AC 73 ms
68,352 KB
testcase_54 AC 73 ms
68,096 KB
testcase_55 AC 74 ms
68,096 KB
testcase_56 AC 73 ms
68,096 KB
testcase_57 AC 75 ms
68,096 KB
testcase_58 AC 73 ms
68,224 KB
testcase_59 AC 75 ms
68,224 KB
testcase_60 AC 75 ms
68,352 KB
testcase_61 AC 73 ms
67,840 KB
testcase_62 AC 75 ms
67,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import pypyjit
import itertools
import heapq
import math
from collections import deque, defaultdict
import bisect

input = sys.stdin.readline
sys.setrecursionlimit(10 ** 6)
pypyjit.set_param('max_unroll_recursion=-1')


def index_lt(a, x):
    'return largest index s.t. A[i] < x or -1 if it does not exist'
    return bisect.bisect_left(a, x) - 1


def index_le(a, x):
    'return largest index s.t. A[i] <= x or -1 if it does not exist'
    return bisect.bisect_right(a, x) - 1


def index_gt(a, x):
    'return smallest index s.t. A[i] > x or len(a) if it does not exist'
    return bisect.bisect_right(a, x)


def index_ge(a, x):
    'return smallest index s.t. A[i] >= x or len(a) if it does not exist'
    return bisect.bisect_left(a, x)


class Combination:
    def __init__(self, N, mod):
        self.N = N
        self.mod = mod
        self.f = [None] * (N + 1)
        self.finv = [None] * (N + 1)
        self.inv = [None] * (N + 1)

        self.f[0] = 1
        self.f[1] = 1
        self.finv[0] = 1
        self.finv[1] = 1
        self.inv[1] = 1
        for i in range(2, N + 1):
            self.f[i] = self.f[i - 1] * i % self.mod
            self.inv[i] = self.mod - self.inv[self.mod % i] * (self.mod // i) % self.mod
            self.finv[i] = self.finv[i - 1] * self.inv[i] % self.mod

    def P(self, n, k):
        if n < k:
            return 0
        if n < 0 or k < 0:
            return 0
        return self.f[n] * self.finv[n - k] % self.mod

    def C(self, n, k):
        if n < k:
            return 0
        if n < 0 or k < 0:
            return 0
        return self.f[n] * (self.finv[k] * self.finv[n - k] % self.mod) % self.mod

    # 重複組合せ
    # n種類のものからk個選ぶ
    def H(self, n, k):
        if n == 0 and k == 0:
            return 1
        return self.C(k + n - 1, k)


N = int(input())
A = list(map(int, input().split()))
mod = 10 ** 9 + 7

comb = Combination(10 ** 5, mod)
ans = 0
for i in range(N):
    ans += A[i] * comb.C(N - 1, i) % mod
    ans %= mod
print(ans)
0