結果

問題 No.1547 [Cherry 2nd Tune *] 偶然の勝利の確率
ユーザー mkawa2mkawa2
提出日時 2021-06-12 00:10:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,030 ms / 2,000 ms
コード長 2,217 bytes
コンパイル時間 520 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 81,536 KB
最終ジャッジ日時 2024-05-08 20:56:57
合計ジャッジ時間 15,307 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,992 KB
testcase_01 AC 49 ms
61,184 KB
testcase_02 AC 103 ms
76,160 KB
testcase_03 AC 53 ms
61,312 KB
testcase_04 AC 57 ms
64,768 KB
testcase_05 AC 47 ms
60,544 KB
testcase_06 AC 50 ms
61,824 KB
testcase_07 AC 52 ms
62,464 KB
testcase_08 AC 44 ms
60,032 KB
testcase_09 AC 50 ms
62,720 KB
testcase_10 AC 50 ms
62,464 KB
testcase_11 AC 55 ms
64,768 KB
testcase_12 AC 44 ms
59,776 KB
testcase_13 AC 245 ms
77,312 KB
testcase_14 AC 180 ms
76,672 KB
testcase_15 AC 113 ms
76,160 KB
testcase_16 AC 138 ms
76,544 KB
testcase_17 AC 137 ms
76,544 KB
testcase_18 AC 132 ms
76,416 KB
testcase_19 AC 89 ms
76,288 KB
testcase_20 AC 579 ms
79,616 KB
testcase_21 AC 114 ms
76,288 KB
testcase_22 AC 46 ms
60,672 KB
testcase_23 AC 995 ms
81,536 KB
testcase_24 AC 1,016 ms
81,408 KB
testcase_25 AC 1,012 ms
81,152 KB
testcase_26 AC 1,004 ms
81,536 KB
testcase_27 AC 1,002 ms
81,152 KB
testcase_28 AC 1,030 ms
81,152 KB
testcase_29 AC 1,018 ms
81,536 KB
testcase_30 AC 1,001 ms
81,024 KB
testcase_31 AC 993 ms
81,024 KB
testcase_32 AC 966 ms
81,280 KB
testcase_33 AC 991 ms
81,408 KB
testcase_34 AC 114 ms
76,544 KB
testcase_35 AC 116 ms
76,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(200005)
int1 = lambda x: int(x)-1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.buffer.readline())
def LI(): return list(map(int, sys.stdin.buffer.readline().split()))
def LI1(): return list(map(int1, sys.stdin.buffer.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def BI(): return sys.stdin.buffer.readline().rstrip()
def SI(): return sys.stdin.buffer.readline().rstrip().decode()
dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
inf = 10**16
md = 998244353
# md = 10**9+7

def dot(aa, bb):
    h, w = len(aa), len(bb[0])
    res = [[0]*w for _ in range(h)]
    for i, row in enumerate(aa):
        for j, col in enumerate(zip(*bb)):
            val = 0
            for a, b in zip(row, col):
                val = (val+a*b)%md
            res[i][j] = val
    return res

ma, na, s = LI()
mb, nb, t = LI()
K = II()
s += t
s, t = t, s

pa = ma*pow(na, md-2, md)
pb = mb*pow(nb, md-2, md)
# print(pa,pb)

dtop = [0]*(t+1)
now = (1-pa)%md
for i in range(t+1):
    dtop[i] = now
    now = now*pa%md
pp0 = [[0]*(t+1) for _ in range(t+1)]
for i in range(1, t):
    p = 1
    d = 0
    for j in range(i, t):
        pp0[i][j] = dtop[d]
        p -= dtop[d]
        d += 1
    pp0[i][t] = p%md
# p2D(pp0)

dtop = [0]*(t+1)
now = (1-pb)%md
for i in range(t+1):
    dtop[i] = now
    now = now*pb%md
pp1 = [[0]*(t+1) for _ in range(t+1)]
for i in range(t-1, 0, -1):
    p = 1
    d = 0
    for j in range(i, 0, -1):
        pp1[i][j] = dtop[d]
        p -= dtop[d]
        d += 1
    pp1[i][0] = p%md

base = [[0]*(t+1) for _ in range(t+1)]
for i in range(1, t):
    for j in range(i, t):
        for k in range(j+1):
            base[k][i] += pp0[i][j]*pp1[j][k]
            base[k][i] %= md

for i in range(1, t):
    base[t][i] = pp0[i][t]

base[0][0] = 1
base[t][t] = 1
# p2D(base)

cc = [[0]*(t+1) for _ in range(t+1)]
for i in range(t+1): cc[i][i] = 1

while K:
    if K & 1: cc = dot(cc, base)
    base = dot(base, base)
    K >>= 1

# print(s,t)
# p2D(cc)
print(cc[t][s])
print(cc[0][s])
0