結果

問題 No.2685 Cell Proliferation (Easy)
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-11-04 19:02:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 309 ms / 2,000 ms
コード長 275 bytes
コンパイル時間 395 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 76,236 KB
最終ジャッジ日時 2024-11-04 19:02:08
合計ジャッジ時間 6,051 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,212 KB
testcase_01 AC 309 ms
75,824 KB
testcase_02 AC 45 ms
59,504 KB
testcase_03 AC 170 ms
75,936 KB
testcase_04 AC 196 ms
75,636 KB
testcase_05 AC 80 ms
75,440 KB
testcase_06 AC 132 ms
76,020 KB
testcase_07 AC 149 ms
75,796 KB
testcase_08 AC 165 ms
75,892 KB
testcase_09 AC 250 ms
75,708 KB
testcase_10 AC 128 ms
75,664 KB
testcase_11 AC 100 ms
75,832 KB
testcase_12 AC 106 ms
75,732 KB
testcase_13 AC 154 ms
75,848 KB
testcase_14 AC 186 ms
75,924 KB
testcase_15 AC 289 ms
76,236 KB
testcase_16 AC 174 ms
75,756 KB
testcase_17 AC 47 ms
61,868 KB
testcase_18 AC 127 ms
75,752 KB
testcase_19 AC 141 ms
75,896 KB
testcase_20 AC 70 ms
72,988 KB
testcase_21 AC 56 ms
66,088 KB
testcase_22 AC 256 ms
75,716 KB
testcase_23 AC 76 ms
60,172 KB
testcase_24 AC 258 ms
59,980 KB
testcase_25 AC 166 ms
60,600 KB
testcase_26 AC 125 ms
60,664 KB
testcase_27 AC 60 ms
60,892 KB
testcase_28 AC 138 ms
60,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

p1,p2,q1,q2,T=map(int,input().split())
M=998244353
P=p1*pow(p2,M-2,M)%M
Q=q1*pow(q2,M-2,M)%M
q=[0]*(T+1)
q[0]=1
for i in range(1,T+1):
  for j in range(i):
    q[i]+=q[j]*pow(Q,(i-j-1)*(i-j)//2,M)*P
    q[i]%=M
print(sum(q[i]*pow(Q,(T-i)*(T-i+1)//2,M) for i in range(T+1))%M)
0