結果

問題 No.407 鴨等素数間隔列の数え上げ
ユーザー papinianuspapinianus
提出日時 2016-08-31 22:21:53
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 403 bytes
コンパイル時間 3,326 ms
コンパイル使用メモリ 31,892 KB
実行使用メモリ 38,844 KB
最終ジャッジ日時 2024-11-14 13:38:24
合計ジャッジ時間 7,386 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
32,532 KB
testcase_01 AC 39 ms
32,400 KB
testcase_02 AC 42 ms
32,400 KB
testcase_03 AC 50 ms
32,468 KB
testcase_04 AC 41 ms
32,400 KB
testcase_05 AC 39 ms
32,404 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 40 ms
32,528 KB
testcase_10 WA -
testcase_11 AC 39 ms
32,148 KB
testcase_12 AC 40 ms
32,656 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 39 ms
32,344 KB
testcase_16 AC 38 ms
32,468 KB
testcase_17 WA -
testcase_18 AC 40 ms
32,276 KB
testcase_19 AC 116 ms
32,404 KB
testcase_20 AC 395 ms
34,488 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 39 ms
32,404 KB
testcase_24 AC 40 ms
32,656 KB
testcase_25 AC 674 ms
38,592 KB
testcase_26 AC 41 ms
32,472 KB
testcase_27 AC 40 ms
32,532 KB
testcase_28 AC 41 ms
32,144 KB
testcase_29 AC 40 ms
32,532 KB
testcase_30 WA -
testcase_31 AC 40 ms
32,472 KB
testcase_32 AC 318 ms
34,492 KB
testcase_33 TLE -
testcase_34 TLE -
testcase_35 AC 612 ms
38,844 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
list($num, $len) = explode(" ", trim(fgets(STDIN)));
$num--;
$sum = gmp_init("0");
$max = (int)ceil($len/$num);
if($max >= 2) {
	$prime = 2;
	$primes = [2];
	while(($prime = gmp_nextprime($prime)) <= $max) {
	    $primes[] = (int)gmp_strval($prime);
	}
	foreach($primes as $prime) {
	    $sum = gmp_add($sum, $len+1 - ($prime*$num));
	}
	// print_r($primes);
}
echo gmp_strval($sum);
echo PHP_EOL;
0