結果

問題 No.212 素数サイコロと合成数サイコロ (2)
ユーザー convexineqconvexineq
提出日時 2020-12-25 22:34:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 5,000 ms
コード長 113 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 53,536 KB
最終ジャッジ日時 2024-09-22 15:58:06
合計ジャッジ時間 1,155 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,144 KB
testcase_01 AC 37 ms
52,960 KB
testcase_02 AC 37 ms
53,072 KB
testcase_03 AC 37 ms
53,428 KB
testcase_04 AC 37 ms
52,724 KB
testcase_05 AC 37 ms
53,536 KB
testcase_06 AC 38 ms
52,076 KB
testcase_07 AC 37 ms
53,200 KB
testcase_08 AC 37 ms
52,120 KB
testcase_09 AC 36 ms
53,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b = map(int,input().split())
p = [2,3,5,7,11,13]
g = [4,6,8,9,10,12]
x = sum(p)/6
y = sum(g)/6
print(x**a*y**b)
0