結果

問題 No.1186 長方形の敷き詰め
ユーザー yakeshibayakeshiba
提出日時 2020-11-18 10:33:10
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 376 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 79,392 KB
最終ジャッジ日時 2024-07-23 08:53:44
合計ジャッジ時間 4,063 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
59,844 KB
testcase_01 AC 39 ms
52,372 KB
testcase_02 AC 36 ms
52,200 KB
testcase_03 AC 37 ms
52,864 KB
testcase_04 AC 36 ms
52,920 KB
testcase_05 AC 37 ms
52,688 KB
testcase_06 AC 37 ms
51,828 KB
testcase_07 AC 36 ms
51,888 KB
testcase_08 WA -
testcase_09 TLE -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353

def ncr(n, r, p): 
    num = den = 1 
    for i in range(r): 
        num = (num * (n - i)) % p 
        den = (den * (i + 1)) % p 
    return (num * pow(den,  
            p - 2, p)) % p 

n, m = map(int,input().split())

if m < n:
    print(1)
    exit()

ans = 1
for i in range(1,m//n+1):
    rest = m-n*i
    ans += ncr(i+rest, i, mod)
    
print(ans%mod)
0