結果

問題 No.212 素数サイコロと合成数サイコロ (2)
ユーザー 👑 rin204rin204
提出日時 2022-01-20 08:02:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 250 ms / 5,000 ms
コード長 381 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 82,564 KB
実行使用メモリ 98,968 KB
最終ジャッジ日時 2024-11-23 14:21:21
合計ジャッジ時間 1,914 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,912 KB
testcase_01 AC 60 ms
67,968 KB
testcase_02 AC 43 ms
55,040 KB
testcase_03 AC 58 ms
64,768 KB
testcase_04 AC 128 ms
81,888 KB
testcase_05 AC 250 ms
98,968 KB
testcase_06 AC 158 ms
86,716 KB
testcase_07 AC 187 ms
91,400 KB
testcase_08 AC 65 ms
71,168 KB
testcase_09 AC 61 ms
69,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from functools import lru_cache

p, c = map(int, input().split())

@lru_cache(None)
def dfs(i, x):
    if i == p + c:
        return x
        
    ret = 0
    if i < p:
        for a in [2, 3, 5, 7, 11, 13]:
            ret += dfs(i + 1, x * a / 6)
    else:
        for a in [4, 6, 8, 9, 10, 12]:
            ret += dfs(i + 1, x * a / 6)
    return ret
    
print(dfs(0, 1))
    
0