結果

問題 No.1035 Color Box
ユーザー nehan_der_thalnehan_der_thal
提出日時 2020-04-24 22:42:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 428 ms / 2,000 ms
コード長 1,060 bytes
コンパイル時間 257 ms
コンパイル使用メモリ 81,964 KB
実行使用メモリ 247,160 KB
最終ジャッジ日時 2024-10-15 03:16:04
合計ジャッジ時間 12,690 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 428 ms
246,400 KB
testcase_01 AC 256 ms
246,144 KB
testcase_02 AC 249 ms
246,144 KB
testcase_03 AC 308 ms
246,144 KB
testcase_04 AC 313 ms
246,272 KB
testcase_05 AC 294 ms
246,400 KB
testcase_06 AC 268 ms
246,272 KB
testcase_07 AC 271 ms
246,144 KB
testcase_08 AC 417 ms
246,272 KB
testcase_09 AC 345 ms
246,272 KB
testcase_10 AC 244 ms
246,272 KB
testcase_11 AC 255 ms
246,076 KB
testcase_12 AC 253 ms
246,280 KB
testcase_13 AC 416 ms
246,696 KB
testcase_14 AC 427 ms
246,924 KB
testcase_15 AC 423 ms
246,528 KB
testcase_16 AC 248 ms
246,936 KB
testcase_17 AC 252 ms
247,160 KB
testcase_18 AC 259 ms
246,224 KB
testcase_19 AC 421 ms
246,512 KB
testcase_20 AC 271 ms
246,152 KB
testcase_21 AC 259 ms
246,356 KB
testcase_22 AC 256 ms
246,600 KB
testcase_23 AC 259 ms
246,620 KB
testcase_24 AC 254 ms
246,432 KB
testcase_25 AC 263 ms
246,148 KB
testcase_26 AC 256 ms
246,456 KB
testcase_27 AC 257 ms
246,356 KB
testcase_28 AC 256 ms
246,452 KB
testcase_29 AC 266 ms
246,364 KB
testcase_30 AC 259 ms
246,536 KB
testcase_31 AC 264 ms
246,220 KB
testcase_32 AC 270 ms
246,288 KB
testcase_33 AC 257 ms
246,272 KB
testcase_34 AC 259 ms
246,432 KB
testcase_35 AC 256 ms
246,268 KB
testcase_36 AC 267 ms
246,392 KB
testcase_37 AC 254 ms
246,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
mod = pow(10, 9) + 7
sys.setrecursionlimit(pow(10, 8))

def power(x, y):
    if   y == 0: return 1
    elif y == 1	 : return x % mod
    elif y % 2 == 0 : return power(x, y//2)**2 % mod
    else: return power(x, (y-1)//2)**2 * x % mod
    
def mul(a, b):
    return ((a % mod) * (b % mod)) % mod

def div(a, b):
    return mul(a, power(b, mod-2))
def div2(a, b):
    return mul(a, modinv(b))

def modinv(a):
    b, u, v = mod, 1, 0
    while b:
        t = a//b
        a, u = a-t*b, u-t*v
        a, b, u, v = b, a, v, u
    u %= mod
    return u

def cmb(n, r):
    if ( r<0 or r>n ):
        return 0
    r = min(r, n-r)
    return g1[n] * g2[r] * g2[n-r] % mod

NNN = (10**6)
g1 = [1, 1]
g2 = [1, 1]
inverse = [0, 1]

for i in range( 2, NNN + 1 ):
    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())
R = 0
for i in range(1, M+1):
    R += (-1 if (M-i)%2 else 1) * (mul(cmb(M, i), power(i, N)))
    R %= mod
print(R)


0