結果

問題 No.212 素数サイコロと合成数サイコロ (2)
ユーザー nehan_der_thalnehan_der_thal
提出日時 2020-03-26 02:47:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 73 ms / 5,000 ms
コード長 125 bytes
コンパイル時間 3,184 ms
コンパイル使用メモリ 86,820 KB
実行使用メモリ 71,944 KB
最終ジャッジ日時 2023-08-30 12:04:20
合計ジャッジ時間 1,948 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
71,700 KB
testcase_01 AC 72 ms
71,796 KB
testcase_02 AC 71 ms
71,540 KB
testcase_03 AC 73 ms
71,864 KB
testcase_04 AC 72 ms
71,944 KB
testcase_05 AC 72 ms
71,924 KB
testcase_06 AC 72 ms
71,732 KB
testcase_07 AC 72 ms
71,684 KB
testcase_08 AC 71 ms
71,900 KB
testcase_09 AC 71 ms
71,732 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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