結果

問題 No.2685 Cell Proliferation (Easy)
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2024-03-01 15:31:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 309 ms / 2,000 ms
コード長 910 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,140 KB
実行使用メモリ 93,968 KB
最終ジャッジ日時 2024-09-30 06:45:33
合計ジャッジ時間 5,225 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,280 KB
testcase_01 AC 309 ms
93,436 KB
testcase_02 AC 60 ms
75,972 KB
testcase_03 AC 170 ms
84,200 KB
testcase_04 AC 195 ms
86,020 KB
testcase_05 AC 81 ms
77,580 KB
testcase_06 AC 126 ms
81,364 KB
testcase_07 AC 143 ms
82,888 KB
testcase_08 AC 171 ms
85,004 KB
testcase_09 AC 221 ms
87,736 KB
testcase_10 AC 123 ms
81,196 KB
testcase_11 AC 99 ms
79,088 KB
testcase_12 AC 107 ms
79,632 KB
testcase_13 AC 141 ms
82,740 KB
testcase_14 AC 183 ms
85,216 KB
testcase_15 AC 284 ms
91,788 KB
testcase_16 AC 166 ms
84,896 KB
testcase_17 AC 51 ms
72,312 KB
testcase_18 AC 118 ms
80,684 KB
testcase_19 AC 129 ms
81,616 KB
testcase_20 AC 76 ms
77,436 KB
testcase_21 AC 62 ms
76,356 KB
testcase_22 AC 248 ms
89,692 KB
testcase_23 AC 94 ms
78,792 KB
testcase_24 AC 299 ms
93,968 KB
testcase_25 AC 198 ms
86,576 KB
testcase_26 AC 168 ms
85,024 KB
testcase_27 AC 72 ms
77,264 KB
testcase_28 AC 173 ms
84,420 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

想定解?

solve(L,R) = 
L-0.000001 秒を迎えた細胞ひとつが、R+0.9秒でいくつになっているか?

"""

import sys
sys.setrecursionlimit(10**6+10)

mod = 998244353

P1,P2,Q1,Q2,T = map(int,input().split())

P12 = P1 * pow(P2,mod-2,mod) % mod
Q12 = Q1 * pow(Q2,mod-2,mod) % mod

lis = [[None] * (T+1) for i in range(T+1)]

def solve(L,R):

    #print (L,R)
    if lis[L][R] != None:
        return lis[L][R]

    assert L <= R

    live = pow(Q12,L,mod)

    # 自分
    if L == R:
        if L == 0:
            now_me = 1
        else:
            now_me = live
    else:
        if L == 0:
            now_me = solve(L+1,R)
        else:
            now_me = solve(L+1,R) * live

    # 分岐
    if L == 0:
        now_make = 0
    else:
        now_make = solve(0,R-L) * P12

    now = now_me + now_make

    lis[L][R] = now % mod
    return lis[L][R]

print (solve(0,T) % mod)
0