結果
問題 | No.2683 Two Sheets |
ユーザー | 👑 tute7627 |
提出日時 | 2024-03-03 18:24:39 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 54 ms / 2,000 ms |
コード長 | 791 bytes |
コンパイル時間 | 1,895 ms |
コンパイル使用メモリ | 203,604 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-09-29 16:55:48 |
合計ジャッジ時間 | 2,947 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 3 ms
6,816 KB |
testcase_03 | AC | 39 ms
6,820 KB |
testcase_04 | AC | 9 ms
6,820 KB |
testcase_05 | AC | 37 ms
6,816 KB |
testcase_06 | AC | 31 ms
6,820 KB |
testcase_07 | AC | 26 ms
6,816 KB |
testcase_08 | AC | 46 ms
6,816 KB |
testcase_09 | AC | 28 ms
6,816 KB |
testcase_10 | AC | 46 ms
6,816 KB |
testcase_11 | AC | 39 ms
6,816 KB |
testcase_12 | AC | 33 ms
6,820 KB |
testcase_13 | AC | 54 ms
6,816 KB |
testcase_14 | AC | 50 ms
6,820 KB |
testcase_15 | AC | 38 ms
6,816 KB |
ソースコード
#include<bits/stdc++.h> #include<atcoder/modint> using namespace std; #ifdef LOCAL #include <debug_print.hpp> #define OUT(...) debug_print::multi_print(#__VA_ARGS__, __VA_ARGS__) #else #define OUT(...) (static_cast<void>(0)) #endif int main(){ int H, W, A, B; cin >> H >> W >> A >> B; assert(1 <= H && H <= 2e5); assert(1 <= W && W <= 2e5); using modint = atcoder::modint998244353; modint xs = 0, ys = 0; for(int x = 0; x < H; x++){ modint prob = modint(max<int>(x - A + 1, 0) + max<int>(0, H - A - x)) / (H - A + 1); xs += (1 - prob) * (1 - prob); } for(int y = 0; y < W; y++){ modint prob = modint(max<int>(y - B + 1, 0) + max<int>(0, W - B - y)) / (W - B + 1); ys += (1 - prob) * (1 - prob); } cout << (modint(2) * A * B - xs * ys).val() << endl; }