結果

問題 No.1035 Color Box
ユーザー jensenjensen
提出日時 2021-01-17 10:50:17
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 333 ms / 2,000 ms
コード長 605 bytes
コンパイル時間 87 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 18,432 KB
最終ジャッジ日時 2024-11-29 08:00:19
合計ジャッジ時間 4,189 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 323 ms
18,432 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 49 ms
11,264 KB
testcase_04 AC 51 ms
11,264 KB
testcase_05 AC 35 ms
10,752 KB
testcase_06 AC 31 ms
10,624 KB
testcase_07 AC 27 ms
10,624 KB
testcase_08 AC 293 ms
17,408 KB
testcase_09 AC 144 ms
13,312 KB
testcase_10 AC 29 ms
10,496 KB
testcase_11 AC 26 ms
10,496 KB
testcase_12 AC 26 ms
10,624 KB
testcase_13 AC 243 ms
15,872 KB
testcase_14 AC 268 ms
16,640 KB
testcase_15 AC 320 ms
18,432 KB
testcase_16 AC 27 ms
10,496 KB
testcase_17 AC 26 ms
10,624 KB
testcase_18 AC 26 ms
10,496 KB
testcase_19 AC 333 ms
18,176 KB
testcase_20 AC 26 ms
10,624 KB
testcase_21 AC 27 ms
10,624 KB
testcase_22 AC 26 ms
10,496 KB
testcase_23 AC 27 ms
10,496 KB
testcase_24 AC 26 ms
10,496 KB
testcase_25 AC 25 ms
10,496 KB
testcase_26 AC 26 ms
10,496 KB
testcase_27 AC 25 ms
10,624 KB
testcase_28 AC 26 ms
10,624 KB
testcase_29 AC 25 ms
10,752 KB
testcase_30 AC 26 ms
10,496 KB
testcase_31 AC 26 ms
10,496 KB
testcase_32 AC 26 ms
10,624 KB
testcase_33 AC 27 ms
10,496 KB
testcase_34 AC 27 ms
10,752 KB
testcase_35 AC 27 ms
10,496 KB
testcase_36 AC 26 ms
10,496 KB
testcase_37 AC 28 ms
10,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def prepare(n, MOD):
 
    # n! の計算
    f = 1
    for m in range(1, n + 1):
        f *= m
        f %= MOD
    fn = f
     
    # n!^-1 の計算
    inv = pow(f, MOD - 2, MOD)
    # n!^-1 - 1!^-1 の計算
    invs = [1] * (n + 1)
    invs[n] = inv
    for m in range(n, 1, -1):
        inv *= m
        inv %= MOD
        invs[m - 1] = inv
     
    return fn, invs

def cmb(n,r,fn,invs,mod):
    return fn*invs[r]*invs[n-r]%mod

n,m=map(int,input().split())
mod=10**9+7
fn,invs=prepare(m,mod)
a=[0]*(m+1)
for i in range(1,m+1):
    a[i]=(cmb(m,i,fn,invs,mod)*pow(i,n,mod)-a[i-1])%mod
print(a[m])
0