結果
問題 | No.76 回数の期待値で練習 |
ユーザー | norioc |
提出日時 | 2024-08-26 23:43:24 |
言語 | PyPy3 (7.3.15) |
結果 |
MLE
|
実行時間 | - |
コード長 | 422 bytes |
コンパイル時間 | 831 ms |
コンパイル使用メモリ | 82,468 KB |
実行使用メモリ | 847,604 KB |
最終ジャッジ日時 | 2024-08-26 23:43:29 |
合計ジャッジ時間 | 3,629 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 43 ms
55,848 KB |
testcase_01 | MLE | - |
ソースコード
from functools import cache import sys sys.setrecursionlimit(10 ** 6 + 100) probs = [0, 1/12, 2/12, 3/12, 1/12, 3/12, 2/12] memo = {} def f(x: int) -> float: if x <= 0: return 0 if x in memo: return memo[x] res = 0 for i in range(1, 7): res += (f(x - i) + 1) * probs[i] memo[x] = res return res T = int(input()) for _ in range(T): N = int(input()) ans = f(N) print(ans)