結果

問題 No.212 素数サイコロと合成数サイコロ (2)
ユーザー nephrologistnephrologist
提出日時 2021-07-02 22:18:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 75 ms / 5,000 ms
コード長 114 bytes
コンパイル時間 295 ms
コンパイル使用メモリ 87,220 KB
実行使用メモリ 71,856 KB
最終ジャッジ日時 2023-09-11 22:23:39
合計ジャッジ時間 1,928 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
71,532 KB
testcase_01 AC 74 ms
71,304 KB
testcase_02 AC 75 ms
71,452 KB
testcase_03 AC 73 ms
71,468 KB
testcase_04 AC 73 ms
71,568 KB
testcase_05 AC 73 ms
71,824 KB
testcase_06 AC 73 ms
71,464 KB
testcase_07 AC 72 ms
71,544 KB
testcase_08 AC 73 ms
71,312 KB
testcase_09 AC 74 ms
71,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

p,c=map(int,input().split())

a=sum([2,3,5,7,11,13])/6
b=sum([4,6,8,9,10,12])/6

ans= pow(a,p)*pow(b,c)
print(ans)
0