結果

問題 No.212 素数サイコロと合成数サイコロ (2)
ユーザー 37zigen37zigen
提出日時 2016-05-05 16:21:26
言語 PHP
(8.3.4)
結果
AC  
実行時間 34 ms / 5,000 ms
コード長 231 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 31,052 KB
実行使用メモリ 31,488 KB
最終ジャッジ日時 2024-10-05 09:43:29
合計ジャッジ時間 1,100 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
30,912 KB
testcase_01 AC 34 ms
31,488 KB
testcase_02 AC 33 ms
30,960 KB
testcase_03 AC 34 ms
31,208 KB
testcase_04 AC 33 ms
31,320 KB
testcase_05 AC 33 ms
31,260 KB
testcase_06 AC 33 ms
31,068 KB
testcase_07 AC 33 ms
30,792 KB
testcase_08 AC 34 ms
31,252 KB
testcase_09 AC 33 ms
31,312 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=3;
// $c=4;
$p_e=pow(array_sum($prime)/6.0,$p);
$c_e=pow(array_sum($composite)/6.0,$c);
echo($p_e*$c_e).PHP_EOL;
0