結果

問題 No.58 イカサマなサイコロ
ユーザー kutsutamakutsutama
提出日時 2018-03-25 13:33:58
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 146 ms / 5,000 ms
コード長 830 bytes
コンパイル時間 84 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 11,776 KB
最終ジャッジ日時 2024-06-25 05:48:50
合計ジャッジ時間 1,116 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 146 ms
11,776 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 AC 39 ms
10,880 KB
testcase_05 AC 45 ms
10,880 KB
testcase_06 AC 84 ms
11,264 KB
testcase_07 AC 29 ms
10,624 KB
testcase_08 AC 32 ms
10,752 KB
testcase_09 AC 50 ms
11,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(n, k, num, taro, jiro, memo):
    if num >= n:
        if taro > jiro:
            memo[n][(taro, jiro)] = 1
            return 1
        else:
            memo[n][(taro, jiro)] = 0
            return 0
    if (taro, jiro) in memo[num]:
        return memo[num][(taro, jiro)]

    res = 0
    if num < k:
        for i in range(4, 7):
            for j in range(1, 7):
                res += solve(n, k, num + 1, taro + i, jiro + j, memo)
        res *= 2
    else:
        for i in range(1, 7):
            for j in range(1, 7):
                res += solve(n, k, num + 1, taro + i, jiro + j, memo)
    memo[num][(taro, jiro)] = res
    return res

n = int(input())
k = int(input())

memo = [{} for x in range(n + 1)]
win = solve(n, k, 0, 0, 0, memo)
res = win / 6**n / 6**n

print(res)
0