結果
問題 | No.352 カード並べ |
ユーザー | tnodino |
提出日時 | 2022-06-25 12:59:23 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 388 bytes |
コンパイル時間 | 82 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 16,256 KB |
最終ジャッジ日時 | 2024-04-26 19:16:03 |
合計ジャッジ時間 | 3,778 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 28 ms
16,128 KB |
testcase_01 | AC | 27 ms
10,880 KB |
testcase_02 | TLE | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
ソースコード
from sys import setrecursionlimit setrecursionlimit(10**6) def dfs(C, x): if x > N: return 0.0 L = list(C) M = len(L) ret = 0 for i in range(M+1): if i == 0 or i == M: ret += 1.0 else: ret += L[i-1] * L[i] ret += dfs(L[:i]+[x]+L[i:], x+1) ret /= M + 1 return ret N = int(input()) C = [] print(dfs(C, 1))