結果

問題 No.75 回数の期待値の問題
ユーザー nohtaraynohtaray
提出日時 2019-11-18 13:49:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 601 ms / 5,000 ms
コード長 457 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,188 KB
最終ジャッジ日時 2024-10-01 13:52:16
合計ジャッジ時間 14,036 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 587 ms
43,544 KB
testcase_01 AC 591 ms
43,548 KB
testcase_02 AC 538 ms
44,188 KB
testcase_03 AC 511 ms
43,564 KB
testcase_04 AC 507 ms
43,568 KB
testcase_05 AC 524 ms
43,684 KB
testcase_06 AC 506 ms
44,064 KB
testcase_07 AC 514 ms
43,692 KB
testcase_08 AC 505 ms
44,060 KB
testcase_09 AC 513 ms
43,944 KB
testcase_10 AC 515 ms
43,800 KB
testcase_11 AC 534 ms
43,548 KB
testcase_12 AC 593 ms
44,184 KB
testcase_13 AC 573 ms
43,684 KB
testcase_14 AC 576 ms
43,548 KB
testcase_15 AC 584 ms
43,556 KB
testcase_16 AC 586 ms
43,548 KB
testcase_17 AC 601 ms
43,676 KB
testcase_18 AC 592 ms
44,060 KB
testcase_19 AC 595 ms
43,804 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import os
import sys

import numpy as np

if os.getenv("LOCAL"):
    sys.stdin = open("_in.txt", "r")

sys.setrecursionlimit(10 ** 9)
INF = float("inf")
IINF = 10 ** 18
MOD = 10 ** 9 + 7
# MOD = 998244353


K = int(sys.stdin.buffer.readline())

# X[i] = sum(X[i+1:i+7]) + 1
# 反復法で解く
ans = np.ones(K + 10)
ans[K] = 0
for _ in range(10000):
    cs = ans.cumsum()
    ans[:K] = (cs[6:] - cs[:-6])[:K] / 6 + 1
    ans[K + 1:] = ans[0]
print(ans[0])
0