結果

問題 No.800 四平方定理
ユーザー Yoichiro NishimuraYoichiro Nishimura
提出日時 2019-04-26 12:53:32
言語 PHP
(8.3.4)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 480 bytes
コンパイル時間 118 ms
コンパイル使用メモリ 30,820 KB
実行使用メモリ 112,108 KB
最終ジャッジ日時 2024-11-24 04:40:33
合計ジャッジ時間 27,665 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
32,016 KB
testcase_01 AC 56 ms
32,908 KB
testcase_02 AC 50 ms
32,780 KB
testcase_03 AC 54 ms
32,780 KB
testcase_04 AC 53 ms
32,656 KB
testcase_05 AC 53 ms
32,724 KB
testcase_06 AC 59 ms
33,036 KB
testcase_07 AC 55 ms
33,040 KB
testcase_08 AC 59 ms
33,168 KB
testcase_09 AC 56 ms
32,912 KB
testcase_10 AC 881 ms
69,864 KB
testcase_11 AC 917 ms
69,736 KB
testcase_12 AC 937 ms
69,740 KB
testcase_13 AC 1,019 ms
69,740 KB
testcase_14 AC 919 ms
69,740 KB
testcase_15 AC 969 ms
69,864 KB
testcase_16 AC 920 ms
69,992 KB
testcase_17 AC 983 ms
69,864 KB
testcase_18 AC 870 ms
69,864 KB
testcase_19 AC 889 ms
69,864 KB
testcase_20 AC 41 ms
30,904 KB
testcase_21 AC 42 ms
31,000 KB
testcase_22 AC 982 ms
69,864 KB
testcase_23 TLE -
testcase_24 AC 1,926 ms
106,984 KB
testcase_25 TLE -
testcase_26 AC 41 ms
31,016 KB
testcase_27 AC 41 ms
30,872 KB
testcase_28 AC 1,811 ms
106,856 KB
testcase_29 AC 1,905 ms
106,860 KB
testcase_30 AC 1,905 ms
106,728 KB
testcase_31 AC 1,694 ms
106,856 KB
testcase_32 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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