結果

問題 No.2683 Two Sheets
ユーザー 👑 rin204rin204
提出日時 2024-02-29 22:23:00
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 664 bytes
コンパイル時間 2,967 ms
コンパイル使用メモリ 246,532 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-09-29 13:03:00
合計ジャッジ時間 3,604 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 WA -
testcase_04 AC 2 ms
6,820 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 2 ms
6,816 KB
testcase_15 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#include "atcoder/modint.hpp"
using mint = atcoder::modint998244353;

int main() {
    int h, w, a, b;
    cin >> h >> w >> a >> b;
    mint row = 0;
    for (int i = 1; i <= a; i++) {
        int le = 2 * a - i;
        if (le > h) continue;
        row += i * (h - le + 1) * (i == a ? 1 : 2);
    }
    mint col = 0;
    for (int i = 1; i <= b; i++) {
        int le = 2 * b - i;
        if (le > w) continue;
        col += i * (w - le + 1) * (i == b ? 1 : 2);
    }

    mint ans = row * col;
    ans /= mint(h - a + 1).pow(2) * mint(w - b + 1).pow(2);
    ans = 2 * a * b - ans;
    cout << ans.val() << endl;
}
0