結果

問題 No.1035 Color Box
ユーザー googol_S0googol_S0
提出日時 2020-04-24 21:39:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 159 ms / 2,000 ms
コード長 620 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 82,280 KB
実行使用メモリ 121,440 KB
最終ジャッジ日時 2024-10-15 02:34:08
合計ジャッジ時間 5,045 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 159 ms
120,272 KB
testcase_01 AC 81 ms
104,628 KB
testcase_02 AC 82 ms
103,580 KB
testcase_03 AC 101 ms
112,640 KB
testcase_04 AC 97 ms
109,480 KB
testcase_05 AC 95 ms
108,796 KB
testcase_06 AC 84 ms
104,260 KB
testcase_07 AC 87 ms
104,344 KB
testcase_08 AC 150 ms
119,916 KB
testcase_09 AC 124 ms
119,024 KB
testcase_10 AC 87 ms
103,772 KB
testcase_11 AC 84 ms
104,736 KB
testcase_12 AC 88 ms
104,520 KB
testcase_13 AC 139 ms
119,896 KB
testcase_14 AC 148 ms
121,440 KB
testcase_15 AC 150 ms
121,312 KB
testcase_16 AC 85 ms
104,516 KB
testcase_17 AC 85 ms
104,332 KB
testcase_18 AC 85 ms
105,260 KB
testcase_19 AC 159 ms
120,264 KB
testcase_20 AC 86 ms
103,576 KB
testcase_21 AC 84 ms
104,108 KB
testcase_22 AC 84 ms
103,568 KB
testcase_23 AC 85 ms
104,908 KB
testcase_24 AC 83 ms
105,008 KB
testcase_25 AC 84 ms
104,188 KB
testcase_26 AC 82 ms
104,284 KB
testcase_27 AC 85 ms
103,804 KB
testcase_28 AC 84 ms
104,388 KB
testcase_29 AC 86 ms
104,124 KB
testcase_30 AC 84 ms
105,172 KB
testcase_31 AC 85 ms
104,180 KB
testcase_32 AC 86 ms
104,516 KB
testcase_33 AC 85 ms
104,184 KB
testcase_34 AC 84 ms
105,240 KB
testcase_35 AC 85 ms
104,600 KB
testcase_36 AC 83 ms
104,636 KB
testcase_37 AC 85 ms
103,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def cmb(n, r):
    global mod
    if ( r<0 or r>n ):
        return 1
    r = min(r, n-r)
    return g1[n] * g2[r] * g2[n-r] % mod
 
def f(n,r):
  return cmb(n+r-1,r)
 
mod = 10**9+7 #出力の制限
N = 100000
g1 = [1, 1] # 元テーブル
g2 = [1, 1] #逆元テーブル
inverse = [0, 1] #逆元テーブル計算用テーブル
 
for i in range( 2, N*2 + 3 ):
    g1.append( ( g1[-1] * i ) % mod )
    inverse.append( ( -inverse[mod % i] * (mod//i) ) % mod )
    g2.append( (g2[-1] * inverse[-1]) % mod )

N,M=map(int,input().split())
P=0
X=1
for i in range(M):
  P+=X*(pow(M-i,N,mod)*cmb(M,M-i))
  X*=-1
print(P%mod)
0