結果

問題 No.567 コンプリート
ユーザー H3PO4H3PO4
提出日時 2020-10-03 08:54:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 510 ms / 2,000 ms
コード長 472 bytes
コンパイル時間 131 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 46,456 KB
最終ジャッジ日時 2024-07-18 04:08:32
合計ジャッジ時間 8,916 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 496 ms
46,188 KB
testcase_01 AC 480 ms
44,316 KB
testcase_02 AC 460 ms
44,596 KB
testcase_03 AC 451 ms
44,972 KB
testcase_04 AC 463 ms
44,980 KB
testcase_05 AC 459 ms
44,720 KB
testcase_06 AC 458 ms
46,176 KB
testcase_07 AC 459 ms
44,204 KB
testcase_08 AC 461 ms
44,984 KB
testcase_09 AC 471 ms
46,440 KB
testcase_10 AC 449 ms
46,456 KB
testcase_11 AC 469 ms
44,988 KB
testcase_12 AC 455 ms
44,336 KB
testcase_13 AC 486 ms
44,304 KB
testcase_14 AC 510 ms
46,060 KB
testcase_15 AC 473 ms
44,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np


def pow_matrix_mod(x, n):
    if not n:
        return np.eye(len(x), dtype=float)
    if n % 2 == 0:
        return pow_matrix_mod(x @ x, n // 2)
    else:
        return x @ pow_matrix_mod(x @ x, (n - 1) // 2)


N = int(input())
dp = np.zeros(7, dtype=float)
dp[0] = 1.0
A = [[0] * 7 for _ in range(7)]
for i in range(6):
    A[i][i + 1] = (6 - i) / 6
    A[i + 1][i + 1] = (i + 1) / 6

A = np.array(A)
res = dp @ pow_matrix_mod(A, N)
print(res[6])
0