結果

問題 No.212 素数サイコロと合成数サイコロ (2)
ユーザー nehan_der_thalnehan_der_thal
提出日時 2020-03-26 02:47:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 5,000 ms
コード長 125 bytes
コンパイル時間 311 ms
コンパイル使用メモリ 82,844 KB
実行使用メモリ 53,816 KB
最終ジャッジ日時 2025-01-02 00:40:08
合計ジャッジ時間 1,392 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,608 KB
testcase_01 AC 32 ms
52,340 KB
testcase_02 AC 31 ms
53,264 KB
testcase_03 AC 32 ms
53,816 KB
testcase_04 AC 32 ms
53,628 KB
testcase_05 AC 33 ms
52,544 KB
testcase_06 AC 32 ms
52,692 KB
testcase_07 AC 35 ms
52,364 KB
testcase_08 AC 38 ms
52,692 KB
testcase_09 AC 38 ms
52,492 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