結果

問題 No.391 CODING WAR
ユーザー fumofumofunifumofumofuni
提出日時 2021-09-13 19:14:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 228 ms / 2,000 ms
コード長 480 bytes
コンパイル時間 280 ms
コンパイル使用メモリ 82,084 KB
実行使用メモリ 79,344 KB
最終ジャッジ日時 2024-06-25 19:53:59
合計ジャッジ時間 4,654 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
62,000 KB
testcase_01 AC 115 ms
61,352 KB
testcase_02 AC 120 ms
61,732 KB
testcase_03 AC 117 ms
61,700 KB
testcase_04 AC 116 ms
61,552 KB
testcase_05 AC 117 ms
61,840 KB
testcase_06 AC 128 ms
61,964 KB
testcase_07 AC 131 ms
62,180 KB
testcase_08 AC 116 ms
61,836 KB
testcase_09 AC 228 ms
79,344 KB
testcase_10 AC 205 ms
77,780 KB
testcase_11 AC 177 ms
77,260 KB
testcase_12 AC 117 ms
61,896 KB
testcase_13 AC 214 ms
78,184 KB
testcase_14 AC 202 ms
75,956 KB
testcase_15 AC 213 ms
76,756 KB
testcase_16 AC 176 ms
72,660 KB
testcase_17 AC 185 ms
74,452 KB
testcase_18 AC 166 ms
71,816 KB
testcase_19 AC 170 ms
72,724 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod=1000000007
maxM=100010
fact=[0]*maxM
fact[0]=1
for i in range(1,maxM):
    fact[i]=fact[i-1]*i%mod
ifact=[0]*maxM
for i in range(maxM):
    ifact[i]=pow(fact[i],mod-2,mod)
def comb(n,k):
    if k<0 or k>n:
        return 0
    return fact[n]*ifact[k]*ifact[n-k]%mod
N,M=map(int,input().split())
ans=0
for i in range(M):
    if i%2==0:
        ans=(ans+comb(M,i)*pow(M-i,N,mod))%mod
    else :
        ans=(ans-comb(M,i)*pow(M-i,N,mod))%mod
        ans=(ans+mod)%mod
print(ans)
0