結果

問題 No.2141 Enumeratest
ユーザー H20H20
提出日時 2022-12-02 21:36:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 576 ms / 2,000 ms
コード長 725 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 82,128 KB
実行使用メモリ 246,528 KB
最終ジャッジ日時 2024-10-09 22:43:29
合計ジャッジ時間 21,928 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 529 ms
245,760 KB
testcase_01 AC 522 ms
246,144 KB
testcase_02 AC 542 ms
246,016 KB
testcase_03 AC 527 ms
246,012 KB
testcase_04 AC 545 ms
246,128 KB
testcase_05 AC 539 ms
246,528 KB
testcase_06 AC 525 ms
245,760 KB
testcase_07 AC 517 ms
246,016 KB
testcase_08 AC 529 ms
246,144 KB
testcase_09 AC 525 ms
246,144 KB
testcase_10 AC 535 ms
245,888 KB
testcase_11 AC 551 ms
246,464 KB
testcase_12 AC 531 ms
246,272 KB
testcase_13 AC 534 ms
246,016 KB
testcase_14 AC 537 ms
246,144 KB
testcase_15 AC 542 ms
246,400 KB
testcase_16 AC 540 ms
246,016 KB
testcase_17 AC 542 ms
246,400 KB
testcase_18 AC 549 ms
246,016 KB
testcase_19 AC 551 ms
246,400 KB
testcase_20 AC 546 ms
246,016 KB
testcase_21 AC 547 ms
246,452 KB
testcase_22 AC 554 ms
246,144 KB
testcase_23 AC 548 ms
246,272 KB
testcase_24 AC 565 ms
246,400 KB
testcase_25 AC 544 ms
246,400 KB
testcase_26 AC 549 ms
246,400 KB
testcase_27 AC 548 ms
245,888 KB
testcase_28 AC 554 ms
246,528 KB
testcase_29 AC 551 ms
246,016 KB
testcase_30 AC 556 ms
246,144 KB
testcase_31 AC 546 ms
245,760 KB
testcase_32 AC 556 ms
246,400 KB
testcase_33 AC 554 ms
245,888 KB
testcase_34 AC 576 ms
246,144 KB
testcase_35 AC 542 ms
246,016 KB
testcase_36 AC 554 ms
246,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#コンビネーション
def cmb(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 = 998244353
N = 10**6*2+50
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 )

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

ave =  M//N
m = M%N
nokori = M
ans = 1
for i in range(N):
    if m>i:
        ans = ans*cmb(nokori,ave+1,mod)%mod
        nokori-=ave+1
    else:
        ans = ans*cmb(nokori,ave,mod)%mod
        nokori-=ave
print(ans)
0