結果

問題 No.75 回数の期待値の問題
ユーザー H3PO4H3PO4
提出日時 2020-06-26 00:02:35
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 973 ms / 5,000 ms
コード長 280 bytes
コンパイル時間 92 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 59,200 KB
最終ジャッジ日時 2024-07-03 22:01:00
合計ジャッジ時間 24,542 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
外部呼び出し有り
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 959 ms
56,736 KB
testcase_01 AC 954 ms
57,004 KB
testcase_02 AC 938 ms
56,608 KB
testcase_03 AC 937 ms
56,484 KB
testcase_04 AC 942 ms
56,484 KB
testcase_05 AC 936 ms
56,488 KB
testcase_06 AC 948 ms
56,888 KB
testcase_07 AC 950 ms
56,868 KB
testcase_08 AC 951 ms
56,476 KB
testcase_09 AC 943 ms
56,476 KB
testcase_10 AC 933 ms
56,872 KB
testcase_11 AC 952 ms
56,596 KB
testcase_12 AC 939 ms
56,868 KB
testcase_13 AC 934 ms
57,128 KB
testcase_14 AC 931 ms
56,488 KB
testcase_15 AC 932 ms
56,488 KB
testcase_16 AC 973 ms
57,260 KB
testcase_17 AC 941 ms
57,644 KB
testcase_18 AC 951 ms
56,888 KB
testcase_19 AC 954 ms
59,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
from scipy.linalg import null_space

K = int(input())
M = np.zeros((K, K + 1), dtype=int)
M[:, -1] = 6
for i in range(K):
    M[i, i + 1:min(i + 7, K)] = 1
    M[i, i] = -6
    M[i, 0] += max(i + 6 - K, 0)

Ker = null_space(M).flatten()
print(Ker[0] / Ker[-1])
0