結果

問題 No.2683 Two Sheets
ユーザー Maffy-0Maffy-0
提出日時 2024-03-21 16:43:41
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 53 ms / 2,000 ms
コード長 636 bytes
コンパイル時間 2,430 ms
コンパイル使用メモリ 202,604 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-09-30 10:09:39
合計ジャッジ時間 2,964 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 4 ms
5,248 KB
testcase_03 AC 39 ms
5,248 KB
testcase_04 AC 10 ms
5,248 KB
testcase_05 AC 36 ms
5,248 KB
testcase_06 AC 31 ms
5,248 KB
testcase_07 AC 26 ms
5,248 KB
testcase_08 AC 46 ms
5,248 KB
testcase_09 AC 27 ms
5,248 KB
testcase_10 AC 45 ms
5,248 KB
testcase_11 AC 40 ms
5,248 KB
testcase_12 AC 33 ms
5,248 KB
testcase_13 AC 53 ms
5,248 KB
testcase_14 AC 50 ms
5,248 KB
testcase_15 AC 36 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/modint>
using namespace std;
using mint = atcoder::modint998244353;

void fast_io() {
    cin.tie(nullptr);
    ios_base::sync_with_stdio(false);
}

mint f(int H, int A) {
    mint res;
    for (int i = 0; i < H; i++) {
        int L = max(0, i - A + 1);
        int R = min(i, H - A);
        mint add = mint(R - L + 1) / (H - A + 1);
        add *= add;
        res += add;
    }
    return res;
}

signed main(void) {
    fast_io();
    int H, W, A, B;
    cin >> H >> W >> A >> B;
    mint ans = mint(2) * A * B;
    ans -= f(H, A) * f(W, B);
    cout << ans.val() << endl;
    return 0;
}
0