結果

問題 No.212 素数サイコロと合成数サイコロ (2)
ユーザー yuppe19 😺yuppe19 😺
提出日時 2015-05-23 13:13:07
言語 PyPy2
(7.3.15)
結果
TLE  
実行時間 -
コード長 363 bytes
コンパイル時間 555 ms
コンパイル使用メモリ 77,948 KB
実行使用メモリ 81,480 KB
最終ジャッジ日時 2023-09-20 10:47:31
合計ジャッジ時間 7,584 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
78,328 KB
testcase_01 AC 93 ms
79,428 KB
testcase_02 AC 85 ms
78,196 KB
testcase_03 AC 96 ms
79,464 KB
testcase_04 AC 358 ms
81,480 KB
testcase_05 TLE -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/python
from itertools import product
from collections import defaultdict
from operator import mul
a = [2, 3, 5, 7, 11, 13]
b = [4, 6, 8, 9, 10, 12]
p, c = map(int, raw_input().split())
L = [a] * p + [b] * c
pro1 = defaultdict(int)
for s in product(*L):
    pro1[reduce(mul, s)] += 1
res = sum(k*v for k, v in pro1.items())
print float(res) / (6**(p+c))
0