結果

問題 No.567 コンプリート
ユーザー lloyzlloyz
提出日時 2022-09-10 17:13:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 929 ms / 2,000 ms
コード長 236 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 210,304 KB
最終ジャッジ日時 2024-11-26 21:58:14
合計ジャッジ時間 2,306 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,812 KB
testcase_01 AC 41 ms
52,460 KB
testcase_02 AC 38 ms
52,432 KB
testcase_03 AC 40 ms
52,828 KB
testcase_04 AC 38 ms
52,660 KB
testcase_05 AC 38 ms
52,964 KB
testcase_06 AC 37 ms
53,084 KB
testcase_07 AC 37 ms
52,340 KB
testcase_08 AC 38 ms
52,428 KB
testcase_09 AC 38 ms
52,332 KB
testcase_10 AC 36 ms
52,816 KB
testcase_11 AC 37 ms
53,344 KB
testcase_12 AC 37 ms
52,496 KB
testcase_13 AC 38 ms
53,696 KB
testcase_14 AC 38 ms
53,532 KB
testcase_15 AC 929 ms
210,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())

DP = [[0.0 for _ in range(8)] for _ in range(n + 1)]
DP[0][0] = 1.0
for i in range(n):
    for j in range(7):
        DP[i + 1][j + 1] += DP[i][j] * (6 - j) / 6
        DP[i + 1][j] += DP[i][j] * j / 6
print(DP[n][6])
0