結果

問題 No.665 Bernoulli Bernoulli
ユーザー titiatitia
提出日時 2024-07-24 01:51:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 446 ms / 2,000 ms
コード長 723 bytes
コンパイル時間 378 ms
コンパイル使用メモリ 82,060 KB
実行使用メモリ 92,520 KB
最終ジャッジ日時 2024-07-24 01:51:26
合計ジャッジ時間 9,303 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
83,700 KB
testcase_01 AC 118 ms
82,556 KB
testcase_02 AC 358 ms
83,232 KB
testcase_03 AC 376 ms
90,456 KB
testcase_04 AC 427 ms
90,460 KB
testcase_05 AC 401 ms
91,824 KB
testcase_06 AC 405 ms
91,308 KB
testcase_07 AC 441 ms
91,400 KB
testcase_08 AC 391 ms
91,180 KB
testcase_09 AC 419 ms
92,136 KB
testcase_10 AC 394 ms
90,340 KB
testcase_11 AC 429 ms
91,940 KB
testcase_12 AC 399 ms
90,968 KB
testcase_13 AC 424 ms
91,900 KB
testcase_14 AC 442 ms
92,520 KB
testcase_15 AC 354 ms
91,148 KB
testcase_16 AC 389 ms
90,568 KB
testcase_17 AC 360 ms
91,356 KB
testcase_18 AC 446 ms
90,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# https://codeforces.com/contest/622/problem/F

n,K=map(int,input().split())
mod=10**9+7

FACT=[1]*(10+10**6)
F=[0]*(10+10**6)
for i in range(1,10+10**6):
    FACT[i]=FACT[i-1]*i%mod
    F[i]=(F[i-1]+pow(i,K,mod))%mod

FACT_INV=[0]*(10+10**6)
FACT_INV[-1]=pow(FACT[-1],mod-2,mod)
for i in range(10+10**6-1,0,-1):
    FACT_INV[i-1]=FACT_INV[i]*i%mod


T=K+2
def powKsum(x):
    if x<=T:
        return F[x]
    ANS=0
    PI=1

    for i in range(1,K+3):
        PI=PI*(x-i)%mod
        if (T-i)%2==0:
            ANS+=F[i]*FACT_INV[T-i]*FACT_INV[i-1]*pow(x-i,mod-2,mod)
        else:
            ANS-=F[i]*FACT_INV[T-i]*FACT_INV[i-1]*pow(x-i,mod-2,mod)
        ANS%=mod
            
    return ANS*PI%mod

print(powKsum(n))
0