結果

問題 No.1688 Veterinarian
ユーザー gr1msl3ygr1msl3y
提出日時 2022-02-24 00:00:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 937 ms / 3,000 ms
コード長 899 bytes
コンパイル時間 501 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 132,496 KB
最終ジャッジ日時 2024-07-02 00:09:18
合計ジャッジ時間 4,383 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 41 ms
52,096 KB
testcase_02 AC 47 ms
58,496 KB
testcase_03 AC 41 ms
52,096 KB
testcase_04 AC 40 ms
51,840 KB
testcase_05 AC 41 ms
52,352 KB
testcase_06 AC 65 ms
68,096 KB
testcase_07 AC 40 ms
51,968 KB
testcase_08 AC 937 ms
132,496 KB
testcase_09 AC 851 ms
128,528 KB
testcase_10 AC 263 ms
85,284 KB
testcase_11 AC 143 ms
79,488 KB
testcase_12 AC 41 ms
52,096 KB
testcase_13 AC 147 ms
79,368 KB
testcase_14 AC 47 ms
58,880 KB
testcase_15 AC 372 ms
91,052 KB
testcase_16 AC 46 ms
57,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A, B, C, N = map(int, input().split())
X = [A, B, C]
dp = {(A, B, C): 1.0}
for _ in range(N):
    ndp = {}
    for a, b, c in dp:
        s = a+b+c
        if a > 1:
            if (a-1, b, c) not in ndp:
                ndp[(a-1, b, c)] = 0.0
            ndp[(a-1, b, c)] += dp[(a, b, c)]*a*(a-1)/s/(s-1)
        if b > 1:
            if (a, b-1, c) not in ndp:
                ndp[(a, b-1, c)] = 0.0
            ndp[(a, b-1, c)] += dp[(a, b, c)]*b*(b-1)/s/(s-1)
        if c > 1:
            if (a, b, c-1) not in ndp:
                ndp[(a, b, c-1)] = 0.0
            ndp[(a, b, c-1)] += dp[(a, b, c)]*c*(c-1)/s/(s-1)
        if (a, b, c) not in ndp:
            ndp[(a, b, c)] = 0.0
        ndp[(a, b, c)] += dp[(a, b, c)] * \
            (s*(s-1)-a*(a-1)-b*(b-1)-c*(c-1))/s/(s-1)
    dp = ndp

ans = [0.0]*3
for t in dp:
    for i in range(3):
        ans[i] += dp[t]*(X[i]-t[i])

print(*ans)
0