結果

問題 No.800 四平方定理
ユーザー Yoichiro NishimuraYoichiro Nishimura
提出日時 2019-06-03 16:06:40
言語 PHP
(8.3.4)
結果
AC  
実行時間 1,971 ms / 2,000 ms
コード長 479 bytes
コンパイル時間 103 ms
コンパイル使用メモリ 32,732 KB
実行使用メモリ 108,544 KB
最終ジャッジ日時 2023-10-17 23:26:55
合計ジャッジ時間 27,036 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
32,676 KB
testcase_01 AC 58 ms
34,632 KB
testcase_02 AC 56 ms
34,632 KB
testcase_03 AC 57 ms
34,632 KB
testcase_04 AC 54 ms
34,632 KB
testcase_05 AC 56 ms
34,632 KB
testcase_06 AC 62 ms
34,632 KB
testcase_07 AC 57 ms
34,632 KB
testcase_08 AC 61 ms
34,632 KB
testcase_09 AC 59 ms
34,632 KB
testcase_10 AC 900 ms
71,496 KB
testcase_11 AC 923 ms
71,496 KB
testcase_12 AC 906 ms
71,496 KB
testcase_13 AC 951 ms
71,496 KB
testcase_14 AC 921 ms
71,496 KB
testcase_15 AC 976 ms
71,496 KB
testcase_16 AC 987 ms
71,496 KB
testcase_17 AC 1,003 ms
71,496 KB
testcase_18 AC 921 ms
71,496 KB
testcase_19 AC 926 ms
71,496 KB
testcase_20 AC 43 ms
32,676 KB
testcase_21 AC 43 ms
32,676 KB
testcase_22 AC 961 ms
71,496 KB
testcase_23 AC 1,917 ms
108,544 KB
testcase_24 AC 1,782 ms
108,360 KB
testcase_25 AC 1,971 ms
108,544 KB
testcase_26 AC 44 ms
32,676 KB
testcase_27 AC 44 ms
32,676 KB
testcase_28 AC 1,790 ms
108,360 KB
testcase_29 AC 1,768 ms
108,364 KB
testcase_30 AC 1,838 ms
108,360 KB
testcase_31 AC 1,598 ms
108,360 KB
testcase_32 AC 1,926 ms
108,544 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 = 1; $y <= $n; $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 = 1; $w <= $n; $w++){
        $p = $w*$w - $Z + $d;
        if(isset($map[$p])){
            $count+=$map[$p];
        }
    }
}
echo $count;
0