結果

問題 No.2235 Line Up Colored Balls
ユーザー ShirotsumeShirotsume
提出日時 2023-03-03 22:00:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 220 ms / 2,000 ms
コード長 1,386 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,336 KB
実行使用メモリ 89,912 KB
最終ジャッジ日時 2024-09-18 01:11:36
合計ジャッジ時間 10,111 ms
ジャッジサーバーID
(参考情報)
judge3 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,752 KB
testcase_01 AC 36 ms
54,376 KB
testcase_02 AC 37 ms
53,872 KB
testcase_03 AC 38 ms
54,948 KB
testcase_04 AC 211 ms
89,912 KB
testcase_05 AC 37 ms
55,516 KB
testcase_06 AC 37 ms
54,016 KB
testcase_07 AC 185 ms
83,440 KB
testcase_08 AC 38 ms
54,600 KB
testcase_09 AC 37 ms
55,368 KB
testcase_10 AC 37 ms
54,016 KB
testcase_11 AC 37 ms
54,196 KB
testcase_12 AC 37 ms
54,072 KB
testcase_13 AC 38 ms
54,192 KB
testcase_14 AC 40 ms
54,756 KB
testcase_15 AC 39 ms
55,732 KB
testcase_16 AC 39 ms
54,476 KB
testcase_17 AC 39 ms
54,548 KB
testcase_18 AC 207 ms
89,500 KB
testcase_19 AC 207 ms
89,272 KB
testcase_20 AC 207 ms
89,408 KB
testcase_21 AC 212 ms
89,524 KB
testcase_22 AC 207 ms
89,472 KB
testcase_23 AC 211 ms
89,616 KB
testcase_24 AC 217 ms
89,784 KB
testcase_25 AC 211 ms
89,732 KB
testcase_26 AC 210 ms
89,612 KB
testcase_27 AC 207 ms
89,504 KB
testcase_28 AC 210 ms
88,988 KB
testcase_29 AC 205 ms
88,588 KB
testcase_30 AC 204 ms
88,904 KB
testcase_31 AC 202 ms
88,716 KB
testcase_32 AC 205 ms
88,592 KB
testcase_33 AC 201 ms
88,704 KB
testcase_34 AC 208 ms
88,752 KB
testcase_35 AC 206 ms
88,792 KB
testcase_36 AC 218 ms
88,740 KB
testcase_37 AC 209 ms
88,700 KB
testcase_38 AC 64 ms
69,728 KB
testcase_39 AC 50 ms
65,096 KB
testcase_40 AC 62 ms
69,876 KB
testcase_41 AC 154 ms
83,368 KB
testcase_42 AC 165 ms
85,948 KB
testcase_43 AC 58 ms
66,784 KB
testcase_44 AC 118 ms
79,892 KB
testcase_45 AC 59 ms
67,496 KB
testcase_46 AC 196 ms
87,800 KB
testcase_47 AC 114 ms
79,820 KB
testcase_48 AC 218 ms
89,736 KB
testcase_49 AC 207 ms
89,544 KB
testcase_50 AC 208 ms
89,528 KB
testcase_51 AC 220 ms
89,536 KB
testcase_52 AC 220 ms
89,460 KB
testcase_53 AC 220 ms
89,516 KB
testcase_54 AC 212 ms
89,400 KB
testcase_55 AC 212 ms
89,544 KB
testcase_56 AC 208 ms
89,480 KB
testcase_57 AC 205 ms
89,560 KB
testcase_58 AC 38 ms
54,692 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import deque, Counter
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 63 - 1
mod = 10 ** 9 + 7
class Combinatorics():
    def __init__(self, mod, maxi):
        self.mod = mod
        self.maxi = maxi
        self.facs = [1] * (maxi + 1)
        self.factinvs = [1] * (maxi + 1)
        self.invs = [1] * (maxi + 1)
        for i in range(2, self.maxi + 1):
            self.facs[i] = ((self.facs[i-1] * i) % self.mod)
            self.invs[i] = (-self.invs[self.mod % i] * (self.mod // i)) % self.mod
            self.factinvs[i] = (self.factinvs[i-1] * self.invs[i]) % self.mod
            
    def choose(self, n, k) -> int:
        if k < 0 or k > n: return 0
        if k == 0 or k == n: return 1
        k = min(k, n - k)
        return (((self.facs[n] * self.factinvs[k]) % self.mod) * self.factinvs[n-k]) % self.mod
    
    def perm(self, n, k) -> int:
        return (self.choose(n, k) * self.facs[k]) % self.mod

    def homop(self, n, k) -> int:
        if n == k == 0:
            return 1
        return self.choose(n + k - 1, k)

n = ii()
a = li()
e = 0
s = sum(a)
for i in range(n):
    e += ((a[i] * pow(s, mod - 2, mod) % mod) * ((a[i] - 1) * pow(s - 1, mod - 2, mod) % mod)) * (s - 1)
    e %= mod
p = (s - 1 - e) % mod
print((p + 1) % mod)
0