結果

問題 No.212 素数サイコロと合成数サイコロ (2)
ユーザー yaoshimaxyaoshimax
提出日時 2015-05-24 19:20:13
言語 PyPy2
(7.3.15)
結果
MLE  
実行時間 -
コード長 323 bytes
コンパイル時間 1,434 ms
コンパイル使用メモリ 76,732 KB
実行使用メモリ 830,268 KB
最終ジャッジ日時 2024-07-06 08:03:58
合計ジャッジ時間 5,257 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
75,936 KB
testcase_01 AC 71 ms
76,480 KB
testcase_02 AC 66 ms
75,528 KB
testcase_03 AC 65 ms
76,428 KB
testcase_04 AC 149 ms
220,280 KB
testcase_05 MLE -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

P,C=map(int,raw_input().split())
V=[1]
for i in range(P):
    nextV=[]
    for p in (2,3,5,7,11,13):
        for v in V:
            nextV.append(v*p)
    V=nextV
for c in range(C):
    nextV=[]
    for p in (4,6,8,9,10,12):
        for v in V:
            nextV.append(v*p)
    V=nextV
print "%.9f"%(sum(V)/pow(6.0,C+P))

0