結果

問題 No.1102 Remnants
ユーザー buey_tbuey_t
提出日時 2023-03-21 18:28:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 366 ms / 2,000 ms
コード長 1,334 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 125,088 KB
最終ジャッジ日時 2024-09-18 14:26:28
合計ジャッジ時間 7,680 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
84,792 KB
testcase_01 AC 137 ms
84,864 KB
testcase_02 AC 128 ms
84,704 KB
testcase_03 AC 126 ms
84,764 KB
testcase_04 AC 127 ms
84,668 KB
testcase_05 AC 288 ms
116,308 KB
testcase_06 AC 171 ms
91,380 KB
testcase_07 AC 366 ms
125,088 KB
testcase_08 AC 152 ms
89,856 KB
testcase_09 AC 154 ms
89,608 KB
testcase_10 AC 149 ms
89,836 KB
testcase_11 AC 154 ms
89,728 KB
testcase_12 AC 161 ms
89,728 KB
testcase_13 AC 161 ms
90,040 KB
testcase_14 AC 233 ms
102,144 KB
testcase_15 AC 214 ms
98,488 KB
testcase_16 AC 326 ms
121,220 KB
testcase_17 AC 346 ms
119,124 KB
testcase_18 AC 339 ms
120,848 KB
testcase_19 AC 211 ms
99,496 KB
testcase_20 AC 167 ms
89,856 KB
testcase_21 AC 264 ms
108,520 KB
testcase_22 AC 313 ms
116,880 KB
testcase_23 AC 280 ms
108,928 KB
testcase_24 AC 240 ms
102,924 KB
testcase_25 AC 344 ms
121,216 KB
testcase_26 AC 163 ms
89,844 KB
testcase_27 AC 203 ms
96,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    from math import sqrt,sin,cos,tan,ceil,radians,floor,gcd,exp,log,log10,log2,factorial,fsum
    from heapq import heapify, heappop, heappush
    from bisect import bisect_left, bisect_right
    from copy import deepcopy
    import copy
    import random
    from collections import deque,Counter,defaultdict
    from itertools import permutations,combinations
    from decimal import Decimal,ROUND_HALF_UP
    #tmp = Decimal(mid).quantize(Decimal('0'), rounding=ROUND_HALF_UP)
    from functools import lru_cache, reduce
    #@lru_cache(maxsize=None)
    from operator import add,sub,mul,xor,and_,or_,itemgetter
    INF = 10**18
    mod1 = 10**9+7
    mod2 = 998244353
    
    #DecimalならPython
    
    
    '''
    
    
    
    '''
    
    N,K = map(int, input().split())
    A = list(map(int, input().split()))
    
    rCk = [-1]*(N+1)
    rCk[0] = 1
    for i in range(1,N+1):
        r = K+i
        rCk[i] = rCk[i-1]*r*pow(r-K,mod1-2,mod1)
        rCk[i] %= mod1
    
    ans = 0
    for i in range(1,N+1):
        ans += rCk[i-1]*rCk[N-i]*A[i-1]
        ans %= mod1
    
    print(ans)
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
if __name__ == '__main__':
    main()
0