結果

問題 No.2527 H and W
ユーザー moon17moon17
提出日時 2023-11-03 23:05:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 142 ms / 2,000 ms
コード長 360 bytes
コンパイル時間 293 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 83,456 KB
最終ジャッジ日時 2024-09-25 21:21:57
合計ジャッジ時間 4,680 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
81,792 KB
testcase_01 AC 126 ms
82,304 KB
testcase_02 AC 136 ms
82,944 KB
testcase_03 AC 123 ms
82,432 KB
testcase_04 AC 135 ms
83,200 KB
testcase_05 AC 133 ms
82,816 KB
testcase_06 AC 130 ms
83,456 KB
testcase_07 AC 117 ms
81,948 KB
testcase_08 AC 132 ms
82,816 KB
testcase_09 AC 114 ms
81,920 KB
testcase_10 AC 113 ms
82,048 KB
testcase_11 AC 136 ms
83,072 KB
testcase_12 AC 142 ms
83,200 KB
testcase_13 AC 133 ms
82,816 KB
testcase_14 AC 142 ms
82,816 KB
testcase_15 AC 139 ms
82,816 KB
testcase_16 AC 131 ms
82,560 KB
testcase_17 AC 140 ms
82,944 KB
testcase_18 AC 135 ms
82,816 KB
testcase_19 AC 135 ms
83,072 KB
testcase_20 AC 136 ms
82,560 KB
testcase_21 AC 138 ms
82,560 KB
testcase_22 AC 141 ms
82,816 KB
testcase_23 AC 136 ms
82,688 KB
testcase_24 AC 130 ms
83,072 KB
testcase_25 AC 120 ms
82,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

h,w,k=map(int,input().split())
M=998244353
N=10**6+1
F=[1]*N;l,f=F[:],F[:]
for i in range(2,N):F[i]=F[i-1]*i%M;l[i]=-(M//i)*l[M%i]%M;f[i]=f[i-1]*l[i]%M
c=lambda l,k:0 if k>l else F[l]*f[k]*f[l-k]%M
s=[]
for i in range(h):
  j=h*w-i*w-k
  if j%(h-i):
    continue
  j//=h-i
  if 0<=j<w:
    s+=(i,j),
ans=0
for i,j in s:
  ans+=c(h,i)*c(w,j)
  ans%=M
print(ans)
0