結果

問題 No.58 イカサマなサイコロ
ユーザー vwxyzvwxyz
提出日時 2021-09-23 21:05:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 48 ms / 5,000 ms
コード長 652 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 81,888 KB
実行使用メモリ 61,440 KB
最終ジャッジ日時 2024-07-05 09:30:11
合計ジャッジ時間 1,035 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
58,496 KB
testcase_01 AC 48 ms
61,440 KB
testcase_02 AC 38 ms
57,588 KB
testcase_03 AC 37 ms
58,368 KB
testcase_04 AC 42 ms
60,672 KB
testcase_05 AC 42 ms
60,800 KB
testcase_06 AC 43 ms
60,800 KB
testcase_07 AC 37 ms
58,112 KB
testcase_08 AC 40 ms
59,648 KB
testcase_09 AC 42 ms
61,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
K=int(input())
dp0=[0]*(61)
dp0[0]=1
for _ in range(N):
    prev=dp0
    dp0=[0]*61
    for i in range(61):
        for j in range(1,7):
            if i+j<=60:
                dp0[i+j]+=prev[i]
dp1=[0]*(61)
dp1[0]=1
for _ in range(N-K):
    prev=dp1
    dp1=[0]*61
    for i in range(61):
        for j in range(1,7):
            if i+j<=60:
                dp1[i+j]+=prev[i]
for _ in range(K):
    prev=dp1
    dp1=[0]*61
    for i in range(61):
        for j in range(4,7):
            if i+j<=60:
                dp1[i+j]+=2*prev[i]
ans=0
for j in range(61):
    for i in range(j):
        ans+=dp0[i]*dp1[j]
ans/=6**(2*N)
print(ans)
0