結果
問題 | No.7 プライムナンバーゲーム |
ユーザー | 綾地寧々 |
提出日時 | 2015-06-11 12:27:28 |
言語 | PHP (8.3.4) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,036 bytes |
コンパイル時間 | 70 ms |
コンパイル使用メモリ | 30,836 KB |
実行使用メモリ | 31,484 KB |
最終ジャッジ日時 | 2024-07-06 15:35:01 |
合計ジャッジ時間 | 3,672 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 32 ms
31,232 KB |
testcase_01 | WA | - |
testcase_02 | AC | 417 ms
31,188 KB |
testcase_03 | AC | 57 ms
31,056 KB |
testcase_04 | AC | 40 ms
31,376 KB |
testcase_05 | WA | - |
testcase_06 | AC | 140 ms
31,140 KB |
testcase_07 | AC | 105 ms
31,104 KB |
testcase_08 | AC | 64 ms
30,824 KB |
testcase_09 | WA | - |
testcase_10 | AC | 33 ms
31,372 KB |
testcase_11 | AC | 105 ms
31,060 KB |
testcase_12 | AC | 299 ms
31,484 KB |
testcase_13 | AC | 315 ms
31,224 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 357 ms
31,240 KB |
コンパイルメッセージ
No syntax errors detected in Main.php
ソースコード
<?php define("NOT_REACHED", 0); define("REACHED", 3); define("REACH_EVEN", 1); define("REACH_ODD", 2); $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, NOT_REACHED); $result[$n] = REACH_EVEN; for ( $i=$n; $i>=0; $i-- ) { if ( $result[$i] === NOT_REACHED ) { continue; } for ( $j=0; $j<count($prime_array); $j++ ) { if ( $i-$prime_array[$j] < 0 ) { break; } switch ( $result[$i] ) { case REACH_EVEN: $result[$i-$prime_array[$j]] |= REACH_ODD; break; case REACH_ODD: $result[$i-$prime_array[$j]] |= REACH_EVEN; break; case REACHED: $result[$i-$prime_array[$j]] |= REACHED; break; default: break; } } } if ( ($result[0] == REACH_ODD) || ($result[1] == REACH_ODD) ) { echo 'Lose'.PHP_EOL; } else { echo 'Win'.PHP_EOL; } function is_prime($number) { for ( $i=2; $i<=sqrt($number); $i++ ) { if ( !($number % $i) ) { return FALSE; } } return TRUE; }