結果

問題 No.800 四平方定理
ユーザー Yoichiro NishimuraYoichiro Nishimura
提出日時 2019-04-26 12:58:30
言語 PHP
(8.3.4)
結果
AC  
実行時間 1,213 ms / 2,000 ms
コード長 478 bytes
コンパイル時間 66 ms
コンパイル使用メモリ 32,276 KB
実行使用メモリ 107,116 KB
最終ジャッジ日時 2024-11-24 04:48:26
合計ジャッジ時間 15,731 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
31,632 KB
testcase_01 AC 48 ms
33,036 KB
testcase_02 AC 44 ms
32,784 KB
testcase_03 AC 42 ms
32,908 KB
testcase_04 AC 42 ms
32,784 KB
testcase_05 AC 43 ms
32,656 KB
testcase_06 AC 46 ms
33,040 KB
testcase_07 AC 43 ms
32,784 KB
testcase_08 AC 47 ms
33,040 KB
testcase_09 AC 46 ms
33,168 KB
testcase_10 AC 451 ms
69,992 KB
testcase_11 AC 479 ms
70,120 KB
testcase_12 AC 454 ms
70,120 KB
testcase_13 AC 517 ms
69,996 KB
testcase_14 AC 493 ms
70,124 KB
testcase_15 AC 506 ms
70,124 KB
testcase_16 AC 473 ms
70,120 KB
testcase_17 AC 536 ms
70,252 KB
testcase_18 AC 460 ms
69,992 KB
testcase_19 AC 499 ms
70,120 KB
testcase_20 AC 36 ms
31,296 KB
testcase_21 AC 35 ms
30,912 KB
testcase_22 AC 506 ms
69,992 KB
testcase_23 AC 1,213 ms
106,732 KB
testcase_24 AC 1,093 ms
106,856 KB
testcase_25 AC 1,210 ms
107,116 KB
testcase_26 AC 37 ms
30,864 KB
testcase_27 AC 35 ms
30,964 KB
testcase_28 AC 1,046 ms
106,988 KB
testcase_29 AC 1,045 ms
106,860 KB
testcase_30 AC 1,109 ms
106,984 KB
testcase_31 AC 897 ms
106,856 KB
testcase_32 AC 1,183 ms
106,856 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
list($n, $d) = explode(" ", trim(fgets(STDIN)));
for($x = 1; $x <= $n; $x++){
    $X = $x*$x;
    for($y = $n; $y > 0 ;$y--){
        $p = $X + $y*$y;
        if(isset($map[$p])){
            $map[$p]++;
        }else{
            $map[$p] = 1;
        }
    }
}
$count = 0;
for($z = 1; $z <= $n; $z++){
    $Z = $z*$z;
    for($w = $n; $w > 0; $w--){
        $p = $w*$w - $Z + $d;
        if(isset($map[$p])){
            $count+=$map[$p];
        }
    }
}
echo $count;
0