結果

問題 No.1035 Color Box
ユーザー tanon710tanon710
提出日時 2020-05-04 16:18:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 204 ms / 2,000 ms
コード長 305 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 89,928 KB
最終ジャッジ日時 2024-06-24 12:31:40
合計ジャッジ時間 4,681 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 201 ms
89,668 KB
testcase_01 AC 56 ms
62,780 KB
testcase_02 AC 36 ms
52,852 KB
testcase_03 AC 58 ms
67,016 KB
testcase_04 AC 119 ms
78,108 KB
testcase_05 AC 64 ms
66,484 KB
testcase_06 AC 40 ms
53,356 KB
testcase_07 AC 127 ms
75,932 KB
testcase_08 AC 194 ms
89,444 KB
testcase_09 AC 159 ms
88,732 KB
testcase_10 AC 70 ms
65,092 KB
testcase_11 AC 46 ms
60,508 KB
testcase_12 AC 50 ms
62,736 KB
testcase_13 AC 186 ms
89,588 KB
testcase_14 AC 193 ms
89,272 KB
testcase_15 AC 204 ms
89,624 KB
testcase_16 AC 37 ms
52,804 KB
testcase_17 AC 38 ms
52,320 KB
testcase_18 AC 37 ms
51,884 KB
testcase_19 AC 202 ms
89,928 KB
testcase_20 AC 41 ms
53,212 KB
testcase_21 AC 37 ms
52,744 KB
testcase_22 AC 37 ms
52,548 KB
testcase_23 AC 37 ms
52,356 KB
testcase_24 AC 37 ms
53,612 KB
testcase_25 AC 38 ms
52,564 KB
testcase_26 AC 37 ms
52,372 KB
testcase_27 AC 37 ms
52,924 KB
testcase_28 AC 37 ms
51,944 KB
testcase_29 AC 37 ms
52,616 KB
testcase_30 AC 37 ms
53,216 KB
testcase_31 AC 37 ms
52,072 KB
testcase_32 AC 37 ms
53,136 KB
testcase_33 AC 37 ms
53,088 KB
testcase_34 AC 36 ms
53,140 KB
testcase_35 AC 37 ms
53,148 KB
testcase_36 AC 37 ms
52,184 KB
testcase_37 AC 37 ms
52,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod=10**9+7
n,m=map(int,input().split())
fact=[1]
for i in range(1,n+1):
    fact.append((fact[-1]*i)%mod)
revfact=[1]
for i in range(1,n+1):
    revfact.append(pow(fact[i],mod-2,mod))
ans=0
for i in range(0,m+1):
    ans+=pow(-1,i)*(fact[m]*revfact[i]*revfact[m-i])*pow(m-i,n,mod)
    ans%=mod
print(ans)
0