結果

問題 No.212 素数サイコロと合成数サイコロ (2)
ユーザー 綾地寧々綾地寧々
提出日時 2015-05-22 22:46:52
言語 PHP
(8.3.4)
結果
AC  
実行時間 37 ms / 5,000 ms
コード長 240 bytes
コンパイル時間 1,238 ms
コンパイル使用メモリ 32,656 KB
実行使用メモリ 32,788 KB
最終ジャッジ日時 2024-07-06 05:17:38
合計ジャッジ時間 2,255 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
32,788 KB
testcase_01 AC 37 ms
32,784 KB
testcase_02 AC 37 ms
32,784 KB
testcase_03 AC 35 ms
32,784 KB
testcase_04 AC 34 ms
32,660 KB
testcase_05 AC 35 ms
32,600 KB
testcase_06 AC 36 ms
32,656 KB
testcase_07 AC 34 ms
32,532 KB
testcase_08 AC 34 ms
32,788 KB
testcase_09 AC 35 ms
32,660 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$prime = array(2,3,5,7,11,13);
$composite = array(4,6,8,9,10,12);
list($p, $c) = explode(" ",trim(fgets(STDIN)));
$p_ex = pow((array_sum($prime) / 6), $p);
$c_ex = pow((array_sum($composite) / 6), $c);
echo ($p_ex * $c_ex) . PHP_EOL;
0