結果
問題 | No.2527 H and W |
ユーザー | anonymously |
提出日時 | 2023-11-03 23:12:38 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 862 bytes |
コンパイル時間 | 1,639 ms |
コンパイル使用メモリ | 168,108 KB |
実行使用メモリ | 14,016 KB |
最終ジャッジ日時 | 2024-09-25 21:25:38 |
合計ジャッジ時間 | 6,257 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,016 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 1,001 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 428 ms
6,940 KB |
testcase_05 | AC | 1 ms
6,944 KB |
testcase_06 | TLE | - |
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=max(1L,(k+w-1)/w);i<=min(h,k);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; }