結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
16,000 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 31 ms
10,752 KB
testcase_05 AC 29 ms
10,624 KB
testcase_06 AC 29 ms
10,624 KB
testcase_07 AC 29 ms
10,752 KB
testcase_08 AC 29 ms
10,752 KB
testcase_09 AC 29 ms
10,752 KB
testcase_10 AC 29 ms
10,752 KB
testcase_11 AC 29 ms
10,752 KB
testcase_12 AC 29 ms
10,624 KB
testcase_13 AC 29 ms
10,752 KB
testcase_14 AC 29 ms
10,752 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