結果

問題 No.1186 長方形の敷き詰め
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2023-11-16 11:59:14
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,085 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 82,596 KB
実行使用メモリ 250,836 KB
最終ジャッジ日時 2024-09-26 05:05:49
合計ジャッジ時間 4,499 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
56,660 KB
testcase_01 AC 45 ms
55,556 KB
testcase_02 AC 275 ms
250,632 KB
testcase_03 AC 42 ms
57,224 KB
testcase_04 AC 42 ms
57,324 KB
testcase_05 WA -
testcase_06 AC 44 ms
55,860 KB
testcase_07 WA -
testcase_08 AC 44 ms
56,816 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 48 ms
63,408 KB
testcase_12 AC 48 ms
64,752 KB
testcase_13 AC 47 ms
62,600 KB
testcase_14 AC 47 ms
63,692 KB
testcase_15 AC 47 ms
62,664 KB
testcase_16 AC 48 ms
62,100 KB
testcase_17 AC 121 ms
134,204 KB
testcase_18 AC 193 ms
208,884 KB
testcase_19 AC 212 ms
228,400 KB
testcase_20 AC 228 ms
249,764 KB
testcase_21 AC 176 ms
192,468 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 234 ms
249,380 KB
testcase_25 AC 171 ms
179,168 KB
testcase_26 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math
input = sys.stdin.readline

N,M = map(int,input().split())

mod = 10**9 + 7
class combination():
    
    def __init__(self,N,p):
        
        
        self.fact = [1, 1]  # fact[n] = (n! mod p)
        self.factinv = [1, 1]  # factinv[n] = ((n!)^(-1) mod p)
        self.inv = [0, 1]  # factinv 計算用
        self.p = p
        
        for i in range(2, N + 1):
            self.fact.append((self.fact[-1] * i) % p)
            self.inv.append((-self.inv[p % i] * (p // i)) % p)
            self.factinv.append((self.factinv[-1] * self.inv[-1]) % p)
        

    def cmb(self,n, r):
        if (r < 0) or (n < r):
            return 0
        r = min(r, n - r)
        return self.fact[n] * self.factinv[r] * self.factinv[n-r] % self.p
        
C = combination(M+1,mod)

if N>=M:
    print(1)
    exit()
    
ans = 1
cnt = 1
while M - N*cnt >=0 :
    
    ans += C.cmb(M-cnt*(N-1),cnt)
    # print(cnt,C.cmb(M-cnt*(N-1),cnt))
    ans %= mod
    cnt += 1
print(ans)
0