結果
問題 | No.2527 H and W |
ユーザー | anonymously |
提出日時 | 2023-11-03 23:08:00 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 839 bytes |
コンパイル時間 | 1,493 ms |
コンパイル使用メモリ | 166,484 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-09-25 21:23:03 |
合計ジャッジ時間 | 5,824 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
10,624 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 1,002 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | TLE | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; const long MODULO=998244353L; long modinv(long a) { long b=MODULO, u=1L, v=0L; while(b){ long t=a/b; a-=(t*b); swap(a, b); u-=(t*v); swap(u, v); } u%=MODULO; if(u<0)u+=MODULO; return u; } long modplus(long a,long b){ long res=(a+b)%MODULO; if(res<0)res+=MODULO; return res; } long modtimes(long a,long b){ return (a*b)%MODULO; } long comb(long n,long r){ long nCr=1L; for(long i=1;i<=r;i++){ nCr=modtimes(modtimes(nCr,n-r+i),modinv(i)); } return nCr; } int main(){ long h,w,k; cin >> h >> w >> k; long ans=0L; for(long i=1;i<=h;i++){ if(k%i==0){ long j=k/i; //i行、j列を残して選択し、赤くする ans=modplus(ans,modtimes(comb(h,i),comb(w,j))); } } cout << ans << endl; return 0; }