結果
問題 | No.212 素数サイコロと合成数サイコロ (2) |
ユーザー | yuppe19 😺 |
提出日時 | 2015-05-23 13:04:15 |
言語 | PyPy2 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 351 bytes |
コンパイル時間 | 365 ms |
コンパイル使用メモリ | 76,824 KB |
実行使用メモリ | 80,404 KB |
最終ジャッジ日時 | 2024-07-06 06:10:41 |
合計ジャッジ時間 | 7,981 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 75 ms
77,628 KB |
testcase_01 | AC | 92 ms
78,908 KB |
testcase_02 | AC | 72 ms
77,848 KB |
testcase_03 | AC | 81 ms
79,368 KB |
testcase_04 | AC | 297 ms
80,404 KB |
testcase_05 | TLE | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
ソースコード
#!/usr/bin/python a = [2, 3, 5, 7, 11, 13] b = [4, 6, 8, 9, 10, 12] from itertools import product from collections import defaultdict p, c = map(int, raw_input().split()) L = [a] * p + [b] * c pro1 = defaultdict(int) for s in product(*L): pro1[reduce(lambda a, b: a*b, s)] += 1 res = sum(k*v for k, v in pro1.items()) print float(res) / (6**(p+c))