結果

問題 No.7 プライムナンバーゲーム
ユーザー DevbotBotDevbotBot
提出日時 2015-07-24 11:32:24
言語 PHP
(8.3.4)
結果
AC  
実行時間 616 ms / 5,000 ms
コード長 627 bytes
コンパイル時間 1,172 ms
コンパイル使用メモリ 31,232 KB
実行使用メモリ 31,544 KB
最終ジャッジ日時 2024-10-01 15:34:46
合計ジャッジ時間 6,162 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
31,368 KB
testcase_01 AC 35 ms
30,980 KB
testcase_02 AC 616 ms
31,252 KB
testcase_03 AC 72 ms
31,336 KB
testcase_04 AC 47 ms
31,208 KB
testcase_05 AC 46 ms
31,088 KB
testcase_06 AC 189 ms
31,292 KB
testcase_07 AC 143 ms
31,456 KB
testcase_08 AC 85 ms
31,544 KB
testcase_09 AC 259 ms
31,104 KB
testcase_10 AC 38 ms
31,412 KB
testcase_11 AC 138 ms
30,968 KB
testcase_12 AC 445 ms
31,144 KB
testcase_13 AC 473 ms
31,348 KB
testcase_14 AC 545 ms
31,148 KB
testcase_15 AC 536 ms
31,096 KB
testcase_16 AC 547 ms
31,256 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$max = trim(fgets(STDIN));
$prime_array = array();
for($n=2; $n<$max; $n++)
{   for($i=floor($n/2); $n%$i!=0; $i--);
    if ($i==1){
        $prime_array[] = $n;
    }
}
$result = array_fill(0, $max+1, 0);
for ( $i=2; $i<=$max; $i++ ) {
        $win_flag = 0;
    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]] < 1 ) {
            $win_flag = 1;
        }
    }
    $result[$i] = $win_flag;
}
echo ($result[$n]? 'Win':'Lose') . PHP_EOL;
0