結果

問題 No.1688 Veterinarian
ユーザー ygd.ygd.
提出日時 2021-09-24 21:59:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,158 ms / 3,000 ms
コード長 1,084 bytes
コンパイル時間 318 ms
コンパイル使用メモリ 81,664 KB
実行使用メモリ 242,268 KB
最終ジャッジ日時 2024-07-05 10:34:01
合計ジャッジ時間 9,671 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
55,296 KB
testcase_01 AC 79 ms
68,992 KB
testcase_02 AC 80 ms
77,184 KB
testcase_03 AC 38 ms
55,296 KB
testcase_04 AC 38 ms
54,912 KB
testcase_05 AC 37 ms
55,296 KB
testcase_06 AC 2,158 ms
241,820 KB
testcase_07 AC 40 ms
54,784 KB
testcase_08 AC 2,012 ms
242,268 KB
testcase_09 AC 1,770 ms
226,944 KB
testcase_10 AC 436 ms
110,848 KB
testcase_11 AC 172 ms
85,248 KB
testcase_12 AC 41 ms
54,656 KB
testcase_13 AC 227 ms
89,856 KB
testcase_14 AC 51 ms
68,096 KB
testcase_15 AC 1,417 ms
194,560 KB
testcase_16 AC 66 ms
76,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(1000000)
input = sys.stdin.buffer.readline
from functools import lru_cache

def comb2(x):
    return x*(x-1)//2

def main():
    A,B,C,N = map(int,input().split())

    @lru_cache(maxsize=None)
    def solve(a,b,c,n):
        if n == 0: return 0,0,0
        if comb2(a+b+c) == 0: return 0,0,0
        aget = 0
        bget = 0
        cget = 0
        #aを1枚てにいれる確率
        pa = comb2(a)/comb2(a+b+c)
        pb = comb2(b)/comb2(a+b+c)
        pc = comb2(c)/comb2(a+b+c)
        aget = pa * (1 + solve(a-1,b,c,n-1)[0]) + pb * solve(a,b-1,c,n-1)[0] + pc * solve(a,b,c-1,n-1)[0] + (1-(pa+pb+pc)) * solve(a,b,c,n-1)[0]
        bget = pa * solve(a-1,b,c,n-1)[1] + pb * (1 + solve(a,b-1,c,n-1)[1]) + pc * solve(a,b,c-1,n-1)[1] + (1-(pa+pb+pc)) * solve(a,b,c,n-1)[1]
        cget = pa * solve(a-1,b,c,n-1)[2] + pb * solve(a,b-1,c,n-1)[2] + pc * (1 + solve(a,b,c-1,n-1)[2]) + (1-(pa+pb+pc)) * solve(a,b,c,n-1)[2]
        return aget,bget,cget
    
    ans = solve(A,B,C,N)
    print(*ans)
             

if __name__ == '__main__':
    main()
0