結果

問題 No.800 四平方定理
ユーザー Yoichiro NishimuraYoichiro Nishimura
提出日時 2019-04-26 12:46:00
言語 PHP
(8.3.4)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 295 bytes
コンパイル時間 777 ms
コンパイル使用メモリ 31,124 KB
実行使用メモリ 107,252 KB
最終ジャッジ日時 2024-11-24 04:25:33
合計ジャッジ時間 32,907 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
32,016 KB
testcase_01 AC 65 ms
33,164 KB
testcase_02 AC 58 ms
32,784 KB
testcase_03 AC 60 ms
32,780 KB
testcase_04 AC 55 ms
32,652 KB
testcase_05 AC 59 ms
33,040 KB
testcase_06 AC 70 ms
33,040 KB
testcase_07 AC 67 ms
32,912 KB
testcase_08 AC 72 ms
33,420 KB
testcase_09 AC 66 ms
33,296 KB
testcase_10 AC 989 ms
70,000 KB
testcase_11 AC 1,122 ms
70,128 KB
testcase_12 AC 1,141 ms
70,260 KB
testcase_13 AC 1,071 ms
70,128 KB
testcase_14 AC 1,145 ms
70,384 KB
testcase_15 AC 1,159 ms
70,132 KB
testcase_16 AC 1,228 ms
70,000 KB
testcase_17 AC 1,178 ms
70,256 KB
testcase_18 AC 1,131 ms
70,384 KB
testcase_19 AC 1,138 ms
70,384 KB
testcase_20 AC 36 ms
31,408 KB
testcase_21 AC 38 ms
31,360 KB
testcase_22 AC 1,145 ms
70,000 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 36 ms
31,440 KB
testcase_27 AC 37 ms
31,104 KB
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
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++){
    for($y = 1; $y <= $n; $y++){
        @$map[$x*$x + $y*$y]++;
    }
}
$count = 0;
for($z = 1; $z <= $n; $z++){
    for($w = 1; $w <= $n; $w++){
        $count+=@$map[$w*$w - $z*$z + $d];
    }
}
echo $count;
0