結果

問題 No.65 回数の期待値の練習
ユーザー terasaterasa
提出日時 2022-11-22 21:48:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 65 ms / 5,000 ms
コード長 552 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,004 KB
実行使用メモリ 69,484 KB
最終ジャッジ日時 2024-09-23 05:40:29
合計ジャッジ時間 2,376 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
69,384 KB
testcase_01 AC 63 ms
68,692 KB
testcase_02 AC 62 ms
68,672 KB
testcase_03 AC 65 ms
68,452 KB
testcase_04 AC 63 ms
68,892 KB
testcase_05 AC 63 ms
67,860 KB
testcase_06 AC 65 ms
67,576 KB
testcase_07 AC 63 ms
68,304 KB
testcase_08 AC 63 ms
67,868 KB
testcase_09 AC 63 ms
68,272 KB
testcase_10 AC 64 ms
67,520 KB
testcase_11 AC 64 ms
68,072 KB
testcase_12 AC 64 ms
67,588 KB
testcase_13 AC 63 ms
69,484 KB
testcase_14 AC 64 ms
68,296 KB
testcase_15 AC 64 ms
68,400 KB
testcase_16 AC 64 ms
68,536 KB
testcase_17 AC 62 ms
69,124 KB
testcase_18 AC 63 ms
69,100 KB
testcase_19 AC 62 ms
68,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from typing import List, Tuple, Callable, TypeVar
import sys
import itertools
import heapq
import bisect
import math
from collections import deque, defaultdict, Counter
from functools import lru_cache, cmp_to_key

input = sys.stdin.readline

if __file__ != 'prog.py':
    sys.setrecursionlimit(10 ** 6)


def readints(): return map(int, input().split())
def readlist(): return list(readints())
def readstr(): return input()[:-1]


K = int(input())

dp = [0] * (K + 10)
for i in range(K)[::-1]:
    dp[i] = sum(dp[i + 1:i + 6 + 1]) / 6 + 1
print(dp[0])
0