結果

問題 No.108 トリプルカードコンプ
ユーザー roiti46roiti46
提出日時 2015-02-25 16:27:48
言語 Python2
(2.7.18)
結果
AC  
実行時間 353 ms / 5,000 ms
コード長 610 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 19,584 KB
最終ジャッジ日時 2024-06-23 23:20:01
合計ジャッジ時間 3,050 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
15,360 KB
testcase_01 AC 48 ms
15,360 KB
testcase_02 AC 48 ms
15,360 KB
testcase_03 AC 45 ms
15,232 KB
testcase_04 AC 44 ms
15,360 KB
testcase_05 AC 45 ms
15,360 KB
testcase_06 AC 45 ms
15,360 KB
testcase_07 AC 353 ms
19,584 KB
testcase_08 AC 54 ms
15,616 KB
testcase_09 AC 44 ms
15,360 KB
testcase_10 AC 46 ms
15,232 KB
testcase_11 AC 47 ms
15,232 KB
testcase_12 AC 44 ms
15,232 KB
testcase_13 AC 67 ms
15,744 KB
testcase_14 AC 53 ms
15,488 KB
testcase_15 AC 49 ms
15,360 KB
testcase_16 AC 59 ms
15,488 KB
testcase_17 AC 46 ms
15,360 KB
testcase_18 AC 261 ms
18,560 KB
testcase_19 AC 115 ms
16,384 KB
testcase_20 AC 72 ms
15,744 KB
testcase_21 AC 185 ms
17,536 KB
testcase_22 AC 48 ms
15,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def dp(n1,n2,n3):
    if memo[n1][n2][n3] > -1: return memo[n1][n2][n3]
    
    n123 = n1+n2+n3
    memo[n1][n2][n3] = N*1.0/n123
    if n1 > 0: memo[n1][n2][n3] += dp(n1-1,n2  ,n3  )*n1/n123
    if n2 > 0: memo[n1][n2][n3] += dp(n1+1,n2-1,n3  )*n2/n123
    if n3 > 0: memo[n1][n2][n3] += dp(n1  ,n2+1,n3-1)*n3/n123
    return memo[n1][n2][n3]
    
N = int(raw_input())
A = map(int,raw_input().split())
memo = [[[-1]*101 for i in xrange(101)] for j in xrange(101)]
memo[0][0][0] = 0.0
need = [0]*3
for a in A:
    if a == 0: need[2] += 1
    if a == 1: need[1] += 1
    if a == 2: need[0] += 1
print dp(*need)
0