結果
問題 | No.7 プライムナンバーゲーム |
ユーザー | 綾地寧々 |
提出日時 | 2015-06-05 13:20:49 |
言語 | PHP (8.3.4) |
結果 |
WA
|
実行時間 | - |
コード長 | 701 bytes |
コンパイル時間 | 1,376 ms |
コンパイル使用メモリ | 31,116 KB |
実行使用メモリ | 31,664 KB |
最終ジャッジ日時 | 2024-07-06 14:11:16 |
合計ジャッジ時間 | 2,536 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 32 ms
31,496 KB |
testcase_01 | AC | 31 ms
31,084 KB |
testcase_02 | AC | 37 ms
31,024 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 31 ms
31,232 KB |
testcase_06 | AC | 33 ms
31,352 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 33 ms
31,460 KB |
testcase_10 | WA | - |
testcase_11 | AC | 32 ms
31,380 KB |
testcase_12 | WA | - |
testcase_13 | AC | 35 ms
31,412 KB |
testcase_14 | AC | 36 ms
31,300 KB |
testcase_15 | AC | 36 ms
31,152 KB |
testcase_16 | WA | - |
コンパイルメッセージ
No syntax errors detected in Main.php
ソースコード
<?php $starttime = microtime(TRUE); $n = trim(fgets(STDIN)); $prime_array = array(); for ( $i=2; $i<=$n; $i++ ) { if ( is_prime($i) ) { $prime_array[] = $i; } } $sub_count = 0; while ( $n >= 4 ) { for ( $i=(count($prime_array)-1); $i>=0; $i-- ) { if ( ($n - $prime_array[$i]) >= 2 ) { break; } } $n -= $prime_array[$i]; $sub_count++; } fprintf(STDERR, "sub_count: %d\n", $sub_count); if ( $sub_count % 2 ) { 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; } $exectime = microtime(TRUE) - $starttime; fprintf(STDERR,"%f seconds\n", $exectime);