結果

問題 No.212 素数サイコロと合成数サイコロ (2)
ユーザー convexineqconvexineq
提出日時 2020-12-25 22:34:58
言語 PyPy3
(7.3.13)
結果
AC  
実行時間 38 ms / 5,000 ms
コード長 113 bytes
コンパイル時間 202 ms
コンパイル使用メモリ 81,632 KB
実行使用メモリ 53,464 KB
最終ジャッジ日時 2023-10-23 22:40:11
合計ジャッジ時間 1,445 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,464 KB
testcase_01 AC 35 ms
53,464 KB
testcase_02 AC 38 ms
53,464 KB
testcase_03 AC 38 ms
53,464 KB
testcase_04 AC 37 ms
53,464 KB
testcase_05 AC 35 ms
53,464 KB
testcase_06 AC 35 ms
53,464 KB
testcase_07 AC 34 ms
53,464 KB
testcase_08 AC 34 ms
53,464 KB
testcase_09 AC 35 ms
53,464 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