結果

問題 No.211 素数サイコロと合成数サイコロ (1)
ユーザー 綾地寧々綾地寧々
提出日時 2015-05-22 22:35:03
言語 PHP
(8.3.4)
結果
AC  
実行時間 40 ms / 1,000 ms
コード長 330 bytes
コンパイル時間 1,834 ms
コンパイル使用メモリ 30,548 KB
実行使用メモリ 31,500 KB
最終ジャッジ日時 2024-06-25 22:19:09
合計ジャッジ時間 4,442 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
31,096 KB
testcase_01 AC 39 ms
31,172 KB
testcase_02 AC 40 ms
31,120 KB
testcase_03 AC 39 ms
31,060 KB
testcase_04 AC 39 ms
31,352 KB
testcase_05 AC 39 ms
31,264 KB
testcase_06 AC 38 ms
31,256 KB
testcase_07 AC 40 ms
31,180 KB
testcase_08 AC 39 ms
31,480 KB
testcase_09 AC 39 ms
31,500 KB
testcase_10 AC 39 ms
31,172 KB
testcase_11 AC 38 ms
31,160 KB
testcase_12 AC 38 ms
31,184 KB
testcase_13 AC 40 ms
31,344 KB
testcase_14 AC 40 ms
31,096 KB
testcase_15 AC 38 ms
30,996 KB
testcase_16 AC 39 ms
31,180 KB
testcase_17 AC 40 ms
31,200 KB
testcase_18 AC 38 ms
31,256 KB
testcase_19 AC 39 ms
31,004 KB
testcase_20 AC 39 ms
31,080 KB
testcase_21 AC 38 ms
31,352 KB
testcase_22 AC 39 ms
31,128 KB
testcase_23 AC 39 ms
31,484 KB
testcase_24 AC 39 ms
30,976 KB
testcase_25 AC 38 ms
31,348 KB
testcase_26 AC 38 ms
30,904 KB
testcase_27 AC 39 ms
31,356 KB
testcase_28 AC 40 ms
31,180 KB
testcase_29 AC 38 ms
31,228 KB
testcase_30 AC 40 ms
31,300 KB
testcase_31 AC 38 ms
31,020 KB
testcase_32 AC 39 ms
31,080 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
define("P", 1/36);
$k = trim(fgets(STDIN));
$prime = array(2,3,5,7,11,13);
$composite = array(4,6,8,9,10,12);
$sum = 0;
for ( $i=0; $i<count($prime); $i++ ) {
	if ( ($k % $prime[$i]) == 0 ) {
		$search = $k / $prime[$i];
		if ( ($j = array_search($search, $composite)) !== FALSE ) {
			$sum++;
		}
	}
}
echo P*$sum.PHP_EOL;
0