結果
| 問題 | No.76 回数の期待値で練習 |
| コンテスト | |
| ユーザー |
norioc
|
| 提出日時 | 2024-08-26 23:42:02 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
MLE
|
| 実行時間 | - |
| コード長 | 361 bytes |
| 記録 | |
| コンパイル時間 | 1,042 ms |
| コンパイル使用メモリ | 20,696 KB |
| 実行使用メモリ | 988,380 KB |
| 最終ジャッジ日時 | 2026-04-03 23:19:01 |
| 合計ジャッジ時間 | 4,013 ms |
|
ジャッジサーバーID (参考情報) |
judge4_0 / judge5_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 1 MLE * 1 |
ソースコード
from functools import cache
import sys
sys.setrecursionlimit(10 ** 6)
probs = [0, 1/12, 2/12, 3/12, 1/12, 3/12, 2/12]
@cache
def f(x: int) -> float:
if x <= 0: return 0
res = 0
for i in range(1, 7):
res += (f(x - i) + 1) * probs[i]
return res
T = int(input())
for _ in range(T):
N = int(input())
ans = f(N)
print(ans)
norioc