結果
問題 | No.2572 Midori on the grid |
ユーザー | ragna |
提出日時 | 2023-11-03 11:46:09 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 1,192 bytes |
コンパイル時間 | 4,008 ms |
コンパイル使用メモリ | 263,132 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-26 03:19:48 |
合計ジャッジ時間 | 14,449 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
ソースコード
#include<bits/stdc++.h> #include<atcoder/all> using namespace atcoder; using mint=modint998244353; using namespace std; using ll=long long; using ull=unsigned long long; #define rep(i,a,b) for(ll i=(ll)(a);i<(ll)(b);i++) #define rrep(i,a,b) for(ll i=(ll)(a-1);i>=(ll)(b);i--) #define MOD 998244353 //#define MOD 1000000007 #define INF 1e18 #define Pair pair<ll,ll> //#define PI numbers::pi //#define E numbers::e template <typename T> bool chmax(T& a,T b){if(a<b){a=b;return 1;}return 0;} template <typename T> bool chmin(T& a,T b){if(a>b){a=b;return 1;}return 0;} ll dx[8]={-2,-1,1,2,-2,-1,1,2}; ll dy[8]={-1,-2,-2,-1,1,2,2,1}; int main(){ int H,W,Q; cin >> H >> W >> Q; vector<mint> nCr(H+W+1,0); nCr[0]=1; for(int i=1;i<H+W+1;i++){ nCr[i]=nCr[i-1]*(H+W-i+1)/i; } while(Q--){ int t; cin >> t; mint ans; if(t*(H+t-W)>0){ if(0<t&&t<=W){ ans=nCr[H]-nCr[W-t]; } else if(-H<=t&&t<0){ ans=nCr[H]-nCr[H+t]; } else{ ans=0; } } else{ ans=0; } cout << ans.val() << endl; } }