結果

問題 No.212 素数サイコロと合成数サイコロ (2)
ユーザー e-mone-mon
提出日時 2015-05-22 22:42:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,326 ms / 5,000 ms
コード長 385 bytes
コンパイル時間 126 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 78,744 KB
最終ジャッジ日時 2024-07-06 05:15:58
合計ジャッジ時間 2,803 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,468 KB
testcase_01 AC 44 ms
61,596 KB
testcase_02 AC 34 ms
52,600 KB
testcase_03 AC 46 ms
61,992 KB
testcase_04 AC 96 ms
75,356 KB
testcase_05 AC 1,326 ms
78,744 KB
testcase_06 AC 280 ms
76,340 KB
testcase_07 AC 258 ms
75,624 KB
testcase_08 AC 41 ms
63,036 KB
testcase_09 AC 39 ms
61,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python
# -*- coding: utf-8 -*-
import itertools

pS = [2,3,5,7,11,13]
cS = [4,6,8,9,10,12]

P,C = map(int,input().split())

def dfs(P,C,k):
    ret = 0
    if P != 0:
        for p in pS:
            ret += dfs(P-1,C,k*p)
    elif C != 0:
        for c in cS:
            ret += dfs(0,C-1,k*c)
    else:
        return  k
    return ret

print(dfs(P,C,1) / ( 6**(P+C)))
0