結果

問題 No.2685 Cell Proliferation (Easy)
ユーザー otoshigootoshigo
提出日時 2024-03-21 00:57:45
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 142 ms / 2,000 ms
コード長 1,019 bytes
コンパイル時間 876 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-09-30 09:52:05
合計ジャッジ時間 3,421 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 142 ms
5,248 KB
testcase_02 AC 6 ms
5,248 KB
testcase_03 AC 71 ms
5,248 KB
testcase_04 AC 83 ms
5,248 KB
testcase_05 AC 22 ms
5,248 KB
testcase_06 AC 48 ms
5,248 KB
testcase_07 AC 60 ms
5,248 KB
testcase_08 AC 68 ms
5,248 KB
testcase_09 AC 100 ms
5,248 KB
testcase_10 AC 47 ms
5,248 KB
testcase_11 AC 33 ms
5,248 KB
testcase_12 AC 36 ms
5,248 KB
testcase_13 AC 61 ms
5,248 KB
testcase_14 AC 78 ms
5,248 KB
testcase_15 AC 131 ms
5,248 KB
testcase_16 AC 69 ms
5,248 KB
testcase_17 AC 4 ms
5,248 KB
testcase_18 AC 45 ms
5,248 KB
testcase_19 AC 53 ms
5,248 KB
testcase_20 AC 17 ms
5,248 KB
testcase_21 AC 9 ms
5,248 KB
testcase_22 AC 114 ms
5,248 KB
testcase_23 AC 28 ms
5,248 KB
testcase_24 AC 142 ms
5,248 KB
testcase_25 AC 90 ms
5,248 KB
testcase_26 AC 63 ms
5,248 KB
testcase_27 AC 16 ms
5,248 KB
testcase_28 AC 72 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    vector<ll>P(2),Q(2);
    for(int i=0;i<2;i++)cin>>P[i];
    for(int i=0;i<2;i++)cin>>Q[i];
    int T;
    cin>>T;
    vector<mint>dp(T+2);
    dp[1]=1;
    vector<mint>q(T+2);
    q[0]=1;
    for(int i=1;i<=T+1;i++)q[i]=q[i-1]*Q[0]/Q[1];
    for(int i=0;i<T;i++){
        for(int j=1;j<=T+1;j++){
            dp[0]+=dp[j]*P[0]/P[1];
            dp[j]*=q[j];
        }
        for(int j=T+1;j>=1;j--)dp[j]=dp[j-1];
        dp[0]=0;
    }
    mint ans=0;
    for(int i=1;i<=T+1;i++){
        ans+=dp[i];
    }
    cout<<ans.val()<<"\n";
}
0