結果

問題 No.7 プライムナンバーゲーム
ユーザー 綾地寧々綾地寧々
提出日時 2015-06-12 11:23:19
言語 PHP
(8.3.4)
結果
AC  
実行時間 341 ms / 5,000 ms
コード長 689 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 32,144 KB
実行使用メモリ 31,384 KB
最終ジャッジ日時 2024-10-01 15:33:40
合計ジャッジ時間 3,608 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
30,816 KB
testcase_01 AC 38 ms
31,048 KB
testcase_02 AC 341 ms
31,148 KB
testcase_03 AC 59 ms
30,772 KB
testcase_04 AC 44 ms
31,144 KB
testcase_05 AC 47 ms
31,156 KB
testcase_06 AC 128 ms
31,384 KB
testcase_07 AC 97 ms
31,252 KB
testcase_08 AC 62 ms
31,212 KB
testcase_09 AC 174 ms
31,296 KB
testcase_10 AC 37 ms
31,128 KB
testcase_11 AC 99 ms
30,904 KB
testcase_12 AC 255 ms
31,088 KB
testcase_13 AC 272 ms
31,252 KB
testcase_14 AC 328 ms
31,172 KB
testcase_15 AC 326 ms
31,376 KB
testcase_16 AC 302 ms
31,048 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$n = trim(fgets(STDIN));
$prime_array = array();
for ( $i=2; $i<=$n; $i++ ) {
	if ( is_prime($i) ) {
		$prime_array[] = $i;
	}
}
$result = array_fill(0, $n+1, FALSE);
for ( $i=2; $i<=$n; $i++ ) {
	$win_flag = FALSE;
	for ( $j=0; $j<count($prime_array); $j++ ) {
		if ( $i-$prime_array[$j] < 0 ) {
			break;
		}
		if ( ($i-$prime_array[$j]) < 2 ) {
			continue;
		}
		if ( $result[$i-$prime_array[$j]] === FALSE ) {
			$win_flag = TRUE;
		}
	}
	$result[$i] = $win_flag;
}
if ( $result[$n] ) {
	echo 'Win'.PHP_EOL;
}
else {
	echo 'Lose'.PHP_EOL;
}
function is_prime($number) {
	for ( $i=2; $i<=sqrt($number); $i++ ) {
		if ( !($number % $i) ) {
			return FALSE;
		}
	}
	return TRUE;
}
0