結果

問題 No.1688 Veterinarian
ユーザー titiatitia
提出日時 2021-09-24 23:09:06
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 2,611 ms / 3,000 ms
コード長 804 bytes
コンパイル時間 93 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 103,596 KB
最終ジャッジ日時 2024-07-05 11:26:13
合計ジャッジ時間 11,087 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,752 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 33 ms
11,008 KB
testcase_03 AC 25 ms
10,752 KB
testcase_04 AC 27 ms
10,880 KB
testcase_05 AC 27 ms
10,880 KB
testcase_06 AC 2,581 ms
103,596 KB
testcase_07 AC 25 ms
10,752 KB
testcase_08 AC 2,611 ms
103,184 KB
testcase_09 AC 2,336 ms
97,040 KB
testcase_10 AC 484 ms
30,228 KB
testcase_11 AC 141 ms
15,864 KB
testcase_12 AC 26 ms
10,752 KB
testcase_13 AC 203 ms
18,984 KB
testcase_14 AC 27 ms
10,752 KB
testcase_15 AC 1,795 ms
80,648 KB
testcase_16 AC 28 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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

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

def plus(A,B):
    ANS=[0,0,0]
    for i in range(3):
        ANS[i]=A[i]+B[i]

    return ANS

def mul(k,A):
    ANS=[0,0,0]
    for i in range(3):
        ANS[i]=k*A[i]
    return ANS
        
from functools import lru_cache
@lru_cache(maxsize=None)
def calc(A,B,C,N):
    if N==0:
        return [0,0,0]
    ALL=c2(A+B+C)

    if ALL==0:
        return [0,0,0]

    ANS=[0,0,0]

    ANS=plus(ANS,mul(c2(A)/ALL,plus([1,0,0],calc(A-1,B,C,N-1))))
    ANS=plus(ANS,mul(c2(B)/ALL,plus([0,1,0],calc(A,B-1,C,N-1))))
    ANS=plus(ANS,mul(c2(C)/ALL,plus([0,0,1],calc(A,B,C-1,N-1))))
    ANS=plus(ANS,mul((ALL-c2(A)-c2(B)-c2(C))/ALL,calc(A,B,C,N-1)))

    return ANS
    
print(*calc(A,B,C,N))
    
    
0