結果

問題 No.1688 Veterinarian
ユーザー wolgnikwolgnik
提出日時 2021-09-24 22:16:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 598 ms / 3,000 ms
コード長 1,057 bytes
コンパイル時間 137 ms
コンパイル使用メモリ 81,844 KB
実行使用メモリ 121,052 KB
最終ジャッジ日時 2024-07-05 10:47:23
合計ジャッジ時間 3,610 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
54,136 KB
testcase_01 AC 37 ms
53,596 KB
testcase_02 AC 38 ms
53,988 KB
testcase_03 AC 36 ms
52,704 KB
testcase_04 AC 36 ms
52,592 KB
testcase_05 AC 37 ms
53,220 KB
testcase_06 AC 58 ms
69,116 KB
testcase_07 AC 92 ms
79,352 KB
testcase_08 AC 598 ms
121,052 KB
testcase_09 AC 550 ms
116,048 KB
testcase_10 AC 148 ms
77,848 KB
testcase_11 AC 147 ms
78,256 KB
testcase_12 AC 80 ms
77,432 KB
testcase_13 AC 85 ms
76,644 KB
testcase_14 AC 105 ms
76,856 KB
testcase_15 AC 116 ms
77,024 KB
testcase_16 AC 81 ms
76,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
A, B, C, N = map(int, input().split())

dp = [[[0.] * (C + 1) for _ in range(B + 1)] for _ in range(A + 1)]
dp[-1][-1][-1] = 1.
#print(dp)
for _ in range(N):
  ndp = [[[0.] * (C + 1) for _ in range(B + 1)] for _ in range(A + 1)]
  for x in range(A + 1):
    for y in range(B + 1):
      for z in range(C + 1):
        sm = x + y + z
        #print(x, y, z, sm)
        if sm >= 2:
          a = x * (x - 1) / sm / (sm - 1)
          b = y * (y - 1) / sm / (sm - 1)
          c = z * (z - 1) / sm / (sm - 1)
          ndp[x - 1][y][z] += dp[x][y][z] * a
          ndp[x][y - 1][z] += dp[x][y][z] * b
          ndp[x][y][z - 1] += dp[x][y][z] * c
          #print(a,b,c,dp[x][y][z])
          ndp[x][y][z] += dp[x][y][z] * (1 - a - b - c)
        else: ndp[x][y][z] += dp[x][y][z]
  dp = ndp
  #print(dp)

res = [0.] * 3
for x in range(A + 1):
  for y in range(B + 1):
    for z in range(C + 1):
      res[0] += dp[x][y][z] * (A - x)
      res[1] += dp[x][y][z] * (B - y)
      res[2] += dp[x][y][z] * (C - z)
print(*res)
0