結果

問題 No.567 コンプリート
ユーザー ああいいああいい
提出日時 2022-01-28 11:47:13
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 289 bytes
コンパイル時間 333 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 735,600 KB
最終ジャッジ日時 2024-06-08 18:28:41
合計ジャッジ時間 4,690 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
66,984 KB
testcase_01 AC 40 ms
59,376 KB
testcase_02 AC 47 ms
61,268 KB
testcase_03 AC 48 ms
62,456 KB
testcase_04 AC 45 ms
61,992 KB
testcase_05 AC 45 ms
62,876 KB
testcase_06 AC 46 ms
62,188 KB
testcase_07 AC 40 ms
60,356 KB
testcase_08 AC 46 ms
62,256 KB
testcase_09 AC 47 ms
61,220 KB
testcase_10 AC 46 ms
63,252 KB
testcase_11 AC 37 ms
52,888 KB
testcase_12 AC 41 ms
60,448 KB
testcase_13 AC 40 ms
59,236 KB
testcase_14 AC 45 ms
63,240 KB
testcase_15 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
dp = [[0] * (1 << 6) for _ in range(n)]
p = 1 / 6
for i in range(6):
    dp[0][1 << i] = p
for i in range(n-1):
    for bit in range(1 << 6):
        for j in range(6):
            mask = 1 << j
            dp[i+1][bit | mask] += dp[i][bit] * p
print(dp[-1][(1 << 6) - 1])
0