結果

問題 No.567 コンプリート
ユーザー titiatitia
提出日時 2024-05-03 02:43:36
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 250 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 16,256 KB
最終ジャッジ日時 2024-05-03 02:43:46
合計ジャッジ時間 4,334 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
16,256 KB
testcase_01 AC 25 ms
10,624 KB
testcase_02 AC 25 ms
10,752 KB
testcase_03 AC 25 ms
10,496 KB
testcase_04 AC 25 ms
10,624 KB
testcase_05 AC 25 ms
10,624 KB
testcase_06 AC 26 ms
10,752 KB
testcase_07 AC 25 ms
10,752 KB
testcase_08 AC 24 ms
10,752 KB
testcase_09 AC 24 ms
10,496 KB
testcase_10 AC 26 ms
10,624 KB
testcase_11 AC 27 ms
10,624 KB
testcase_12 AC 26 ms
10,624 KB
testcase_13 AC 26 ms
10,752 KB
testcase_14 AC 25 ms
10,624 KB
testcase_15 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

n=int(input())
DP=[0]*7
DP[0]=1

for i in range(n):
    NDP=[0]*7

    for i in range(6):
        NDP[i+1]+=DP[i]*((6-i)/6)
        NDP[i]+=DP[i]*(1-((6-i)/6))

    NDP[-1]+=DP[-1]

    DP=NDP
    
print(DP[-1])
0