結果

問題 No.2527 H and W
ユーザー titiatitia
提出日時 2023-11-03 22:04:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 326 ms / 2,000 ms
コード長 584 bytes
コンパイル時間 296 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 243,216 KB
最終ジャッジ日時 2024-09-25 20:25:26
合計ジャッジ時間 8,902 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 275 ms
243,216 KB
testcase_01 AC 250 ms
242,688 KB
testcase_02 AC 296 ms
242,816 KB
testcase_03 AC 276 ms
242,816 KB
testcase_04 AC 308 ms
242,816 KB
testcase_05 AC 309 ms
242,756 KB
testcase_06 AC 316 ms
242,688 KB
testcase_07 AC 306 ms
242,816 KB
testcase_08 AC 325 ms
243,200 KB
testcase_09 AC 292 ms
242,688 KB
testcase_10 AC 253 ms
242,688 KB
testcase_11 AC 258 ms
242,560 KB
testcase_12 AC 265 ms
242,816 KB
testcase_13 AC 269 ms
242,688 KB
testcase_14 AC 272 ms
242,816 KB
testcase_15 AC 263 ms
242,968 KB
testcase_16 AC 277 ms
242,816 KB
testcase_17 AC 279 ms
242,816 KB
testcase_18 AC 275 ms
242,560 KB
testcase_19 AC 270 ms
242,688 KB
testcase_20 AC 320 ms
242,816 KB
testcase_21 AC 325 ms
242,688 KB
testcase_22 AC 326 ms
242,816 KB
testcase_23 AC 282 ms
242,688 KB
testcase_24 AC 269 ms
242,688 KB
testcase_25 AC 252 ms
242,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

H,W,K=map(int,input().split())

mod=998244353

FACT=[1]
for i in range(1,2*10**6+1):
    FACT.append(FACT[-1]*i%mod)

FACT_INV=[pow(FACT[-1],mod-2,mod)]
for i in range(2*10**6,0,-1):
    FACT_INV.append(FACT_INV[-1]*i%mod)

FACT_INV.reverse()

def Combi(a,b):
    if 0<=b<=a:
        return FACT[a]*FACT_INV[b]%mod*FACT_INV[a-b]%mod
    else:
        return 0

ANS=0

sc=H*W-K
for i in range(H+1):
    score=W*i

    rest=sc-score

    if rest>=0 and rest%(H-i)==0:
        k=rest//(H-i)

        ANS+=Combi(H,i)*Combi(W,k)

print(ANS%mod)
    
0