結果
問題 | No.2683 Two Sheets |
ユーザー | otoshigo |
提出日時 | 2024-03-20 22:50:15 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 106 ms / 2,000 ms |
コード長 | 825 bytes |
コンパイル時間 | 794 ms |
コンパイル使用メモリ | 78,004 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-09-30 08:58:15 |
合計ジャッジ時間 | 2,774 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 6 ms
5,248 KB |
testcase_03 | AC | 78 ms
5,248 KB |
testcase_04 | AC | 18 ms
5,248 KB |
testcase_05 | AC | 72 ms
5,248 KB |
testcase_06 | AC | 62 ms
5,248 KB |
testcase_07 | AC | 51 ms
5,248 KB |
testcase_08 | AC | 91 ms
5,248 KB |
testcase_09 | AC | 54 ms
5,248 KB |
testcase_10 | AC | 92 ms
5,248 KB |
testcase_11 | AC | 78 ms
5,248 KB |
testcase_12 | AC | 65 ms
5,248 KB |
testcase_13 | AC | 106 ms
5,248 KB |
testcase_14 | AC | 101 ms
5,248 KB |
testcase_15 | AC | 71 ms
5,248 KB |
ソースコード
#include<iostream> #include<algorithm> #include<vector> #include<atcoder/modint> using namespace std; using ll=long long; using mint=atcoder::modint998244353; #define all(v) v.begin(),v.end() #define rall(v) v.rbegin(),v.rend() template<class T> bool chmax(T &a, T b){if (a < b){a = b;return true;} else return false;} template<class T> bool chmin(T &a, T b){if (a > b){a = b;return true;} else return false;} mint p(int H,int A,int i){ int l=max(i-A+1,1),r=min(i,H-A+1); return(mint)max(0,r-l+1)/(H-A+1); } int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); ll H,W,A,B; cin>>H>>W>>A>>B; mint ans=0,p1=0,p2=0; for(int i=1;i<=H;i++){ p1+=p(H,A,i)*p(H,A,i); } for(int j=1;j<=W;j++){ p2+=p(W,B,j)*p(W,B,j); } ans=2*A*B-p1*p2; cout<<ans.val()<<"\n"; }