結果

問題 No.567 コンプリート
ユーザー ああいいああいい
提出日時 2022-01-28 11:50:28
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 577 bytes
コンパイル時間 626 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 80,896 KB
最終ジャッジ日時 2024-06-08 18:33:29
合計ジャッジ時間 4,975 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
64,000 KB
testcase_01 AC 45 ms
57,984 KB
testcase_02 AC 46 ms
59,904 KB
testcase_03 AC 48 ms
60,416 KB
testcase_04 AC 46 ms
61,184 KB
testcase_05 AC 48 ms
60,288 KB
testcase_06 AC 49 ms
60,416 KB
testcase_07 AC 45 ms
58,368 KB
testcase_08 AC 50 ms
60,672 KB
testcase_09 AC 47 ms
60,032 KB
testcase_10 AC 51 ms
60,672 KB
testcase_11 AC 37 ms
51,456 KB
testcase_12 AC 43 ms
57,984 KB
testcase_13 AC 44 ms
58,496 KB
testcase_14 AC 49 ms
61,056 KB
testcase_15 TLE -
権限があれば一括ダウンロードができます

ソースコード

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])
"""
dp = [0] * (1 << 6)
p = 1 / 6
for i in range(6):
    dp[1 << i] = p
for _ in range(n-1):
    next = [0] * (1 << 6)
    for bit in range(1 << 6):
        for j in range(6):
            mask = 1 << j
            next[bit | mask] += dp[bit] * p
    dp = next
print(dp[(1 << 6) - 1])
0