結果

問題 No.2527 H and W
ユーザー なえしらなえしら
提出日時 2023-11-03 21:52:16
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 390 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 91,904 KB
最終ジャッジ日時 2024-09-25 20:04:24
合計ジャッジ時間 37,316 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,096 KB
testcase_01 AC 40 ms
51,968 KB
testcase_02 TLE -
testcase_03 AC 37 ms
52,352 KB
testcase_04 TLE -
testcase_05 AC 1,989 ms
91,392 KB
testcase_06 AC 1,986 ms
91,136 KB
testcase_07 AC 37 ms
51,968 KB
testcase_08 TLE -
testcase_09 AC 1,020 ms
83,456 KB
testcase_10 AC 1,007 ms
83,200 KB
testcase_11 AC 1,990 ms
91,520 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 AC 1,221 ms
84,736 KB
testcase_20 AC 1,213 ms
84,864 KB
testcase_21 AC 1,070 ms
83,456 KB
testcase_22 AC 1,056 ms
83,584 KB
testcase_23 AC 1,040 ms
83,456 KB
testcase_24 AC 1,286 ms
85,504 KB
testcase_25 AC 933 ms
82,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

MOD = 998244353
H_C_, W_C_ = [1]*(H+1), [1]*(W+1)
for i in range(H):
  H_C_[i+1] = H_C_[i] * (H-i) * pow(i+1, MOD-2, MOD) % MOD
for i in range(W):
  W_C_[i+1] = W_C_[i] * (W-i) * pow(i+1, MOD-2, MOD) % MOD

ans = 0
for i in range(1, H + 1):
  if K % i == 0 and K//i <= W:
    r, c = H - i, W - K//i
    ans += H_C_[r] * W_C_[c]
    ans %= MOD
print(ans)
0