結果

問題 No.108 トリプルカードコンプ
ユーザー nephrologistnephrologist
提出日時 2021-01-28 00:46:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 402 ms / 5,000 ms
コード長 616 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 134,816 KB
最終ジャッジ日時 2024-06-25 01:47:21
合計ジャッジ時間 3,805 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
55,424 KB
testcase_01 AC 46 ms
55,040 KB
testcase_02 AC 50 ms
54,528 KB
testcase_03 AC 46 ms
54,656 KB
testcase_04 AC 48 ms
54,912 KB
testcase_05 AC 47 ms
54,528 KB
testcase_06 AC 47 ms
55,040 KB
testcase_07 AC 402 ms
134,816 KB
testcase_08 AC 84 ms
77,696 KB
testcase_09 AC 48 ms
55,424 KB
testcase_10 AC 47 ms
55,168 KB
testcase_11 AC 47 ms
54,528 KB
testcase_12 AC 47 ms
54,784 KB
testcase_13 AC 109 ms
80,628 KB
testcase_14 AC 88 ms
76,928 KB
testcase_15 AC 82 ms
77,304 KB
testcase_16 AC 104 ms
78,976 KB
testcase_17 AC 65 ms
70,272 KB
testcase_18 AC 296 ms
115,764 KB
testcase_19 AC 156 ms
90,188 KB
testcase_20 AC 117 ms
81,792 KB
testcase_21 AC 239 ms
102,340 KB
testcase_22 AC 97 ms
77,508 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from functools import lru_cache
import sys

sys.setrecursionlimit(4100000)
n = int(input())
A = list(map(int, input().split()))

n1, n2, n3 = 0, 0, 0
for a in A:
    a = min(a, 3)
    if a == 0:
        n3 += 1
    if a == 1:
        n2 += 1
    if a == 2:
        n1 += 1


@lru_cache(None)
def calc(a, b, c):
    if a == 0 and b == 0 and c == 0:
        return 0

    res = n
    goukei = a + b + c
    if c:
        res += (calc(a, b + 1, c - 1)) * c
    if b:
        res += (calc(a + 1, b - 1, c)) * b
    if a:
        res += (calc(a - 1, b, c)) * a
    res /= goukei
    return res


print(calc(n1, n2, n3))

0