結果

問題 No.58 イカサマなサイコロ
ユーザー KudeKude
提出日時 2020-09-07 06:05:49
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 437 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 152,376 KB
最終ジャッジ日時 2024-11-29 10:11:17
合計ジャッジ時間 13,782 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,224 KB
testcase_01 TLE -
testcase_02 AC 41 ms
51,968 KB
testcase_03 AC 41 ms
51,968 KB
testcase_04 AC 83 ms
75,904 KB
testcase_05 AC 167 ms
75,904 KB
testcase_06 AC 3,183 ms
76,288 KB
testcase_07 AC 40 ms
52,096 KB
testcase_08 AC 58 ms
66,944 KB
testcase_09 AC 3,208 ms
152,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
k = int(input())
c1 = [0] * (6 * n + 1)
c2 = [0] * (6 * n + 1)
from itertools import product
for p in product([1,2,3,4,5,6], repeat=n):
    c1[sum(p)] += 1
for p1 in product([1,2,3,4,5,6], repeat=n-k):
    for p2 in product([4,4,5,5,6,6], repeat=k):
        c2[sum(p1)+sum(p2)] += 1
for i in range(6 * n - 1, -1, -1):
    c2[i] += c2[i+1]

wincnt = sum(c1[i] * c2[i+1] for i in range(6 * n))
print(wincnt / 6 ** (2 * n))
0