結果

問題 No.212 素数サイコロと合成数サイコロ (2)
ユーザー koyoprokoyopro
提出日時 2015-09-20 11:33:04
言語 Python2
(2.7.18)
結果
AC  
実行時間 15 ms / 5,000 ms
コード長 248 bytes
コンパイル時間 78 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 7,168 KB
最終ジャッジ日時 2024-07-19 08:20:13
合計ジャッジ時間 720 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 14 ms
7,040 KB
testcase_01 AC 14 ms
6,944 KB
testcase_02 AC 14 ms
7,040 KB
testcase_03 AC 12 ms
6,948 KB
testcase_04 AC 13 ms
7,168 KB
testcase_05 AC 15 ms
7,040 KB
testcase_06 AC 15 ms
6,944 KB
testcase_07 AC 15 ms
6,944 KB
testcase_08 AC 15 ms
7,040 KB
testcase_09 AC 13 ms
7,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# -*- coding: utf-8 -*-

import random

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

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

KP = 1.0 * sum(primes) / len(primes)
KC = 1.0 * sum(composite) / len(composite)

print "%.9f" % (KP ** P * KC ** C)
0