結果

問題 No.108 トリプルカードコンプ
ユーザー ynyn
提出日時 2016-07-27 20:41:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 140 ms / 5,000 ms
コード長 791 bytes
コンパイル時間 667 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 85,880 KB
最終ジャッジ日時 2024-11-06 18:02:27
合計ジャッジ時間 3,819 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,480 KB
testcase_01 AC 39 ms
53,320 KB
testcase_02 AC 41 ms
54,484 KB
testcase_03 AC 39 ms
54,068 KB
testcase_04 AC 38 ms
51,936 KB
testcase_05 AC 39 ms
52,688 KB
testcase_06 AC 39 ms
52,072 KB
testcase_07 AC 138 ms
85,700 KB
testcase_08 AC 138 ms
85,512 KB
testcase_09 AC 140 ms
85,472 KB
testcase_10 AC 137 ms
85,556 KB
testcase_11 AC 138 ms
85,488 KB
testcase_12 AC 52 ms
62,268 KB
testcase_13 AC 87 ms
77,824 KB
testcase_14 AC 85 ms
78,028 KB
testcase_15 AC 86 ms
77,656 KB
testcase_16 AC 87 ms
77,752 KB
testcase_17 AC 85 ms
77,456 KB
testcase_18 AC 131 ms
84,980 KB
testcase_19 AC 128 ms
84,684 KB
testcase_20 AC 136 ms
85,432 KB
testcase_21 AC 135 ms
85,880 KB
testcase_22 AC 129 ms
84,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
arr = list(map(int,input().split()))

cnt = [0] * 4
for i in range(n):
    if arr[i] >= 3:
        cnt[3] += 1
    else:
        cnt[arr[i]] += 1

dp = [[[0 for i in range(n + 1)] for j in range(n + 1)] for k in range(n + 1)]

dp[0][0][0] = 0

for a in range(n + 1):
    for b in range(n + 1):
        for c in range(n + 1):
            if a + b + c == 0:
                continue

            dp[a][b][c] = n / (a + b + c)

            if a - 1 >= 0 and b + 1 <= n:
                dp[a][b][c] += a / (a + b + c) * dp[a - 1][b + 1][c]
            if b - 1 >= 0 and c + 1 <= n:
                dp[a][b][c] += b / (a + b + c) * dp[a][b - 1][c + 1]
            if c - 1 >= 0:
                dp[a][b][c] += c / (a + b + c) * dp[a][b][c - 1]

print(dp[cnt[0]][cnt[1]][cnt[2]])
0