結果

問題 No.1035 Color Box
ユーザー brthyyjpbrthyyjp
提出日時 2020-04-25 12:18:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 526 ms / 2,000 ms
コード長 837 bytes
コンパイル時間 324 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 246,272 KB
最終ジャッジ日時 2024-11-06 22:34:10
合計ジャッジ時間 17,705 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 521 ms
246,272 KB
testcase_01 AC 391 ms
246,016 KB
testcase_02 AC 386 ms
246,144 KB
testcase_03 AC 435 ms
245,760 KB
testcase_04 AC 435 ms
246,144 KB
testcase_05 AC 418 ms
245,760 KB
testcase_06 AC 388 ms
246,016 KB
testcase_07 AC 393 ms
246,016 KB
testcase_08 AC 510 ms
245,760 KB
testcase_09 AC 459 ms
246,272 KB
testcase_10 AC 388 ms
245,760 KB
testcase_11 AC 384 ms
246,144 KB
testcase_12 AC 385 ms
246,016 KB
testcase_13 AC 506 ms
246,016 KB
testcase_14 AC 510 ms
246,272 KB
testcase_15 AC 526 ms
246,272 KB
testcase_16 AC 387 ms
246,272 KB
testcase_17 AC 382 ms
245,760 KB
testcase_18 AC 381 ms
246,016 KB
testcase_19 AC 524 ms
246,144 KB
testcase_20 AC 385 ms
246,272 KB
testcase_21 AC 380 ms
246,144 KB
testcase_22 AC 384 ms
246,016 KB
testcase_23 AC 389 ms
246,272 KB
testcase_24 AC 403 ms
246,016 KB
testcase_25 AC 382 ms
245,888 KB
testcase_26 AC 383 ms
245,760 KB
testcase_27 AC 381 ms
246,272 KB
testcase_28 AC 383 ms
246,272 KB
testcase_29 AC 383 ms
246,272 KB
testcase_30 AC 385 ms
246,016 KB
testcase_31 AC 383 ms
246,016 KB
testcase_32 AC 389 ms
246,144 KB
testcase_33 AC 389 ms
246,016 KB
testcase_34 AC 389 ms
246,144 KB
testcase_35 AC 391 ms
246,272 KB
testcase_36 AC 381 ms
246,272 KB
testcase_37 AC 382 ms
246,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
mod = 10**9*7

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

mod = 10**9+7 #出力の制限
N = 10**6
g1 = [1, 1] # 元テーブル
g2 = [1, 1] #逆元テーブル
inverse = [0, 1] #逆元テーブル計算用テーブル

for i in range( 2, N + 1 ):
    g1.append( ( g1[-1] * i ) % mod )
    inverse.append( ( -inverse[mod % i] * (mod//i) ) % mod )
    g2.append( (g2[-1] * inverse[-1]) % mod )

def power(a, n, mod):
  bi=str(format(n,"b")) #2進数
  res=1
  for i in range(len(bi)):
    res=(res*res) %mod
    if bi[i]=="1":
      res=(res*a) %mod
  return res

res = 0
for i in range(m+1):
    temp = cmb1(m, i, mod) * power(i, n, mod)
    if (m-i)%2 == 0:
        res += temp
    else:
        res -= temp
print(res%mod)
0