結果

問題 No.108 トリプルカードコンプ
ユーザー rlangevinrlangevin
提出日時 2023-10-29 01:20:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 89 ms / 5,000 ms
コード長 480 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 86,308 KB
最終ジャッジ日時 2024-09-25 16:36:49
合計ジャッジ時間 2,466 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,616 KB
testcase_01 AC 36 ms
53,532 KB
testcase_02 AC 36 ms
52,940 KB
testcase_03 AC 39 ms
52,808 KB
testcase_04 AC 37 ms
52,396 KB
testcase_05 AC 34 ms
52,916 KB
testcase_06 AC 35 ms
52,956 KB
testcase_07 AC 89 ms
86,076 KB
testcase_08 AC 86 ms
86,160 KB
testcase_09 AC 86 ms
86,308 KB
testcase_10 AC 83 ms
86,044 KB
testcase_11 AC 85 ms
86,080 KB
testcase_12 AC 36 ms
53,136 KB
testcase_13 AC 58 ms
69,748 KB
testcase_14 AC 58 ms
69,132 KB
testcase_15 AC 57 ms
68,448 KB
testcase_16 AC 60 ms
69,836 KB
testcase_17 AC 59 ms
69,844 KB
testcase_18 AC 83 ms
85,220 KB
testcase_19 AC 82 ms
84,824 KB
testcase_20 AC 85 ms
85,664 KB
testcase_21 AC 88 ms
86,160 KB
testcase_22 AC 82 ms
84,756 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
X = [0] * 4
for a in A:
    X[min(a, 3)] += 1
    
dp = [[[0] * (N + 5) for i in range(N + 5)] for _ in range(N + 5)]
for n in range(1, N + 1):
    for z in range(n, -1, -1):
        for y in range(n - z, -1, -1):
            x = n - y - z
            s = x + y + z
            dp[x][y][z] = dp[x-1][y+1][z] * x + dp[x][y-1][z+1] * y + dp[x][y][z-1] * z + N
            dp[x][y][z] /= s
            
print(dp[X[0]][X[1]][X[2]])
0