結果
問題 | No.36 素数が嫌い! |
ユーザー | 綾地寧々 |
提出日時 | 2015-07-20 10:49:22 |
言語 | PHP (8.3.4) |
結果 |
WA
|
実行時間 | - |
コード長 | 446 bytes |
コンパイル時間 | 1,686 ms |
コンパイル使用メモリ | 32,272 KB |
実行使用メモリ | 39,472 KB |
最終ジャッジ日時 | 2024-07-08 11:12:15 |
合計ジャッジ時間 | 11,188 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 34 ms
32,656 KB |
testcase_01 | AC | 32 ms
32,528 KB |
testcase_02 | AC | 32 ms
32,400 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 53 ms
32,400 KB |
testcase_08 | AC | 35 ms
32,400 KB |
testcase_09 | AC | 35 ms
32,660 KB |
testcase_10 | AC | 37 ms
32,276 KB |
testcase_11 | AC | 2,021 ms
32,532 KB |
testcase_12 | TLE | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
コンパイルメッセージ
No syntax errors detected in Main.php
ソースコード
<?php $n = trim(fgets(STDIN)); $gmp_n = gmp_init($n); if ( is_prime($gmp_n) ) { echo "NO".PHP_EOL; } else { echo "YES".PHP_EOL; } function is_prime($gmp_number) { if ( gmp_cmp($gmp_number, gmp_init(1)) == 0 ) return TRUE; for ( $gmp_i=gmp_init(2); gmp_cmp(gmp_sqrt($gmp_number), $gmp_i)>=0; $gmp_i=gmp_add($gmp_i, gmp_init(1)) ) { if ( gmp_cmp(gmp_div_r($gmp_number,$gmp_i),gmp_init(0)) == 0 ) { return FALSE; } } return TRUE; }