結果

問題 No.75 回数の期待値の問題
ユーザー ytftytft
提出日時 2022-11-07 13:12:45
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 570 ms / 5,000 ms
コード長 361 bytes
コンパイル時間 136 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,984 KB
最終ジャッジ日時 2024-07-20 21:19:56
合計ジャッジ時間 14,473 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 552 ms
43,956 KB
testcase_01 AC 562 ms
44,928 KB
testcase_02 AC 554 ms
44,212 KB
testcase_03 AC 551 ms
44,476 KB
testcase_04 AC 551 ms
44,216 KB
testcase_05 AC 566 ms
44,852 KB
testcase_06 AC 563 ms
44,348 KB
testcase_07 AC 558 ms
44,724 KB
testcase_08 AC 557 ms
44,724 KB
testcase_09 AC 555 ms
44,212 KB
testcase_10 AC 557 ms
44,472 KB
testcase_11 AC 560 ms
44,464 KB
testcase_12 AC 555 ms
44,600 KB
testcase_13 AC 552 ms
44,472 KB
testcase_14 AC 557 ms
44,208 KB
testcase_15 AC 548 ms
44,336 KB
testcase_16 AC 561 ms
44,608 KB
testcase_17 AC 558 ms
44,596 KB
testcase_18 AC 568 ms
44,852 KB
testcase_19 AC 570 ms
44,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import numpy as np
input=lambda:sys.stdin.readline().rstrip()
#D,P=map(float,input().split())
K=int(input())
A=[[int(i==j) for i in range(K)] for j in range(K)]
b=[[1] for i in range(K)]
for i in range(K):
	for j in range(1,7):
		if i+j<K:
			A[i][i+j]-=1/6
		elif i+j>K:
			A[i][0]-=1/6
A=np.array(A)
b=np.array(b)
print((np.linalg.inv(A)@b)[0][0])
0