結果

問題 No.1035 Color Box
ユーザー flippergoflippergo
提出日時 2024-11-01 21:09:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 101 ms / 2,000 ms
コード長 433 bytes
コンパイル時間 356 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 75,404 KB
最終ジャッジ日時 2024-11-01 21:10:04
合計ジャッジ時間 4,065 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
75,404 KB
testcase_01 AC 38 ms
52,868 KB
testcase_02 AC 39 ms
53,152 KB
testcase_03 AC 52 ms
62,852 KB
testcase_04 AC 54 ms
62,820 KB
testcase_05 AC 49 ms
62,396 KB
testcase_06 AC 39 ms
53,172 KB
testcase_07 AC 40 ms
53,168 KB
testcase_08 AC 93 ms
73,580 KB
testcase_09 AC 67 ms
67,804 KB
testcase_10 AC 39 ms
53,008 KB
testcase_11 AC 38 ms
52,380 KB
testcase_12 AC 38 ms
53,216 KB
testcase_13 AC 85 ms
71,296 KB
testcase_14 AC 93 ms
72,852 KB
testcase_15 AC 101 ms
74,832 KB
testcase_16 AC 38 ms
51,884 KB
testcase_17 AC 38 ms
52,760 KB
testcase_18 AC 37 ms
53,080 KB
testcase_19 AC 99 ms
74,908 KB
testcase_20 AC 37 ms
52,828 KB
testcase_21 AC 38 ms
52,528 KB
testcase_22 AC 40 ms
52,712 KB
testcase_23 AC 37 ms
52,748 KB
testcase_24 AC 38 ms
52,628 KB
testcase_25 AC 38 ms
52,688 KB
testcase_26 AC 39 ms
51,940 KB
testcase_27 AC 38 ms
52,596 KB
testcase_28 AC 46 ms
52,092 KB
testcase_29 AC 38 ms
52,824 KB
testcase_30 AC 39 ms
52,900 KB
testcase_31 AC 40 ms
52,192 KB
testcase_32 AC 40 ms
53,972 KB
testcase_33 AC 38 ms
52,824 KB
testcase_34 AC 41 ms
53,812 KB
testcase_35 AC 39 ms
53,072 KB
testcase_36 AC 38 ms
52,188 KB
testcase_37 AC 41 ms
52,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10**9+7
N,M = map(int,input().split())
A = list(range(M+1))
A[0]=A[1]=1
for i in range(2,M+1):
    A[i]=(i*A[i-1])%MOD
B = [0]*(M+1)
B[0]=B[1]=1
B[M] = pow(A[M],MOD-2,MOD)
for i in range(M-1,1,-1):
    B[i] = (B[i+1]*(i+1))%MOD
def comb(n,k):
    if k>n or k<0:return 0
    if k==0 or k==n:return 1
    return (A[n]*B[k]*B[n-k])%MOD
ans = 0
for k in range(M):
    ans = (ans+(-1)**(k%2)*comb(M,k)*pow(M-k,N,MOD))%MOD
print(ans)
0