結果

問題 No.2457 Stampaholic (Easy)
ユーザー sotanishysotanishy
提出日時 2023-09-01 23:16:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,764 ms / 4,000 ms
コード長 1,064 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 76,416 KB
最終ジャッジ日時 2024-06-11 05:22:01
合計ジャッジ時間 9,001 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,096 KB
testcase_01 AC 705 ms
62,976 KB
testcase_02 AC 116 ms
60,160 KB
testcase_03 AC 40 ms
52,480 KB
testcase_04 AC 39 ms
51,968 KB
testcase_05 AC 773 ms
60,672 KB
testcase_06 AC 62 ms
59,648 KB
testcase_07 AC 35 ms
52,096 KB
testcase_08 AC 126 ms
60,928 KB
testcase_09 AC 90 ms
60,928 KB
testcase_10 AC 153 ms
60,288 KB
testcase_11 AC 206 ms
60,416 KB
testcase_12 AC 291 ms
60,160 KB
testcase_13 AC 370 ms
60,544 KB
testcase_14 AC 614 ms
60,672 KB
testcase_15 AC 689 ms
60,544 KB
testcase_16 AC 709 ms
61,056 KB
testcase_17 AC 2,764 ms
76,416 KB
testcase_18 AC 156 ms
63,616 KB
testcase_19 AC 43 ms
59,008 KB
testcase_20 AC 36 ms
51,840 KB
testcase_21 AC 68 ms
59,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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

if H > W:
    H, W = W, H

ans = 0
den = pow((H-K+1)*(W-K+1), mod-2, mod)
if (K-1)*2 <= H:
    ans += (H-2*(K-1))*(W-2*(K-1))*(1-pow(1-K*K*den, N, mod)) % mod
    for i in range(K-1):
        ans += 2*(W-2*(K-1))*(1-pow(1-K*(i+1)*den, N, mod)) % mod
        ans += 2*(H-2*(K-1))*(1-pow(1-K*(i+1)*den, N, mod)) % mod
    for i in range(K-1):
        for j in range(K-1):
            ans += 4*(1-pow(1-(i+1)*(j+1)*den, N, mod)) % mod
elif (K-1)*2 <= W:
    for i in range(H):
        h = max(0, min(i, H-K) - max(0, i-K+1) + 1)
        ans += (W-2*(K-1))*(1-pow(1-h*K*den, N, mod)) % mod
        for j in range(K-1):
            w = max(0, min(j, W-K) - max(0, j-K+1) + 1)
            ans += 2*(1-pow(1-h*w*den, N, mod)) % mod
else:
    for i in range(H):
        for j in range(W):
            h = max(0, min(i, H-K) - max(0, i-K+1) + 1)
            w = max(0, min(j, W-K) - max(0, j-K+1) + 1)
            ans += (1-pow(1-h*w*den, N, mod)) % mod


ans %= mod
print(ans)
0