結果

問題 No.1688 Veterinarian
ユーザー brthyyjpbrthyyjp
提出日時 2021-09-24 22:33:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 592 ms / 3,000 ms
コード長 643 bytes
コンパイル時間 270 ms
コンパイル使用メモリ 81,856 KB
実行使用メモリ 128,348 KB
最終ジャッジ日時 2024-07-05 10:59:22
合計ジャッジ時間 4,142 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,480 KB
testcase_01 AC 43 ms
60,276 KB
testcase_02 AC 61 ms
72,404 KB
testcase_03 AC 44 ms
53,684 KB
testcase_04 AC 42 ms
54,072 KB
testcase_05 AC 41 ms
54,104 KB
testcase_06 AC 592 ms
128,348 KB
testcase_07 AC 41 ms
54,012 KB
testcase_08 AC 556 ms
128,216 KB
testcase_09 AC 537 ms
124,504 KB
testcase_10 AC 171 ms
83,892 KB
testcase_11 AC 96 ms
77,060 KB
testcase_12 AC 40 ms
55,208 KB
testcase_13 AC 118 ms
78,308 KB
testcase_14 AC 45 ms
59,908 KB
testcase_15 AC 429 ms
114,228 KB
testcase_16 AC 46 ms
60,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a, b, c, n = map(int, input().split())
from collections import defaultdict
dp = defaultdict(lambda: 0)
dp[(a, b, c)] = 1
for i in range(n):
    nx = defaultdict(lambda: 0)
    for (x, y, z), p in dp.items():
        t = (x+y+z)*(x+y+z-1)//2
        if t == 0:
            continue
        px = x*(x-1)//2
        nx[(x-1, y, z)] += (px/t)*p
        py = y*(y-1)//2
        nx[(x, y-1, z)] += (py/t)*p
        pz = z*(z-1)//2
        nx[(x, y, z-1)] += (pz/t)*p
        nx[(x, y, z)] += ((t-px-py-pz)/t)*p
    dp = nx
ans = [0, 0, 0]
for (x, y, z), p in dp.items():
    ans[0] += (a-x)*p
    ans[1] += (b-y)*p
    ans[2] += (c-z)*p
print(*ans)
0