結果

問題 No.567 コンプリート
ユーザー H3PO4H3PO4
提出日時 2020-10-03 08:37:37
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 214 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 50,868 KB
最終ジャッジ日時 2024-07-18 04:08:08
合計ジャッジ時間 11,216 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 465 ms
50,728 KB
testcase_01 AC 466 ms
43,920 KB
testcase_02 AC 457 ms
43,536 KB
testcase_03 AC 458 ms
43,792 KB
testcase_04 AC 459 ms
43,532 KB
testcase_05 AC 468 ms
43,788 KB
testcase_06 AC 470 ms
43,664 KB
testcase_07 AC 466 ms
43,788 KB
testcase_08 AC 455 ms
43,792 KB
testcase_09 AC 465 ms
43,536 KB
testcase_10 AC 458 ms
43,916 KB
testcase_11 AC 462 ms
43,788 KB
testcase_12 AC 456 ms
43,916 KB
testcase_13 AC 464 ms
43,784 KB
testcase_14 AC 452 ms
43,924 KB
testcase_15 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

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