結果

問題 No.1035 Color Box
ユーザー takakintakakin
提出日時 2020-06-08 21:56:22
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 474 ms / 2,000 ms
コード長 501 bytes
コンパイル時間 122 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 26,496 KB
最終ジャッジ日時 2024-06-08 00:36:17
合計ジャッジ時間 10,593 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 459 ms
26,112 KB
testcase_01 AC 183 ms
26,368 KB
testcase_02 AC 184 ms
26,240 KB
testcase_03 AC 196 ms
26,368 KB
testcase_04 AC 220 ms
26,368 KB
testcase_05 AC 197 ms
26,240 KB
testcase_06 AC 187 ms
26,240 KB
testcase_07 AC 181 ms
26,240 KB
testcase_08 AC 412 ms
26,496 KB
testcase_09 AC 276 ms
26,368 KB
testcase_10 AC 180 ms
26,240 KB
testcase_11 AC 183 ms
26,240 KB
testcase_12 AC 181 ms
26,240 KB
testcase_13 AC 378 ms
26,240 KB
testcase_14 AC 409 ms
26,240 KB
testcase_15 AC 474 ms
26,112 KB
testcase_16 AC 193 ms
26,240 KB
testcase_17 AC 191 ms
26,368 KB
testcase_18 AC 174 ms
26,240 KB
testcase_19 AC 470 ms
26,240 KB
testcase_20 AC 191 ms
26,240 KB
testcase_21 AC 202 ms
26,240 KB
testcase_22 AC 183 ms
26,240 KB
testcase_23 AC 192 ms
26,240 KB
testcase_24 AC 178 ms
26,368 KB
testcase_25 AC 196 ms
26,240 KB
testcase_26 AC 180 ms
26,368 KB
testcase_27 AC 178 ms
26,240 KB
testcase_28 AC 188 ms
26,368 KB
testcase_29 AC 186 ms
26,240 KB
testcase_30 AC 181 ms
26,368 KB
testcase_31 AC 181 ms
26,112 KB
testcase_32 AC 181 ms
26,240 KB
testcase_33 AC 189 ms
26,112 KB
testcase_34 AC 182 ms
26,368 KB
testcase_35 AC 178 ms
26,368 KB
testcase_36 AC 176 ms
26,368 KB
testcase_37 AC 182 ms
26,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda: sys.stdin.readline().rstrip()
n,m=map(int,input().split())
mod=10**9+7
n_max=2*(10**5+1)
F,FI=[0]*(n_max+1),[0]*(n_max+1)
F[0],FI[0]=1,1
for i in range(n_max):
  F[i+1]=(F[i]*(i+1))%mod
FI[n_max-1]=pow(F[n_max-1],mod-2,mod)
for i in reversed(range(n_max-1)):
  FI[i]=(FI[i+1]*(i+1))%mod
def comb(x,y):
  return (F[x]*FI[x-y]*FI[y])%mod

ans=0
for i in range(m):
  if i%2:
    ans=(ans-pow(m-i,n,mod)*comb(m,i))%mod
  else:
    ans=(ans+pow(m-i,n,mod)*comb(m,i))%mod
print(ans)
0