結果

問題 No.800 四平方定理
ユーザー Yoichiro NishimuraYoichiro Nishimura
提出日時 2019-06-03 16:06:16
言語 PHP
(8.3.4)
結果
AC  
実行時間 1,110 ms / 2,000 ms
コード長 479 bytes
コンパイル時間 3,282 ms
コンパイル使用メモリ 32,016 KB
実行使用メモリ 108,220 KB
最終ジャッジ日時 2024-09-17 20:32:14
合計ジャッジ時間 15,314 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
32,272 KB
testcase_01 AC 47 ms
34,232 KB
testcase_02 AC 43 ms
34,236 KB
testcase_03 AC 41 ms
34,364 KB
testcase_04 AC 40 ms
34,488 KB
testcase_05 AC 42 ms
34,488 KB
testcase_06 AC 46 ms
34,364 KB
testcase_07 AC 43 ms
34,364 KB
testcase_08 AC 53 ms
34,232 KB
testcase_09 AC 46 ms
34,616 KB
testcase_10 AC 461 ms
71,224 KB
testcase_11 AC 486 ms
71,352 KB
testcase_12 AC 475 ms
71,224 KB
testcase_13 AC 476 ms
71,228 KB
testcase_14 AC 491 ms
71,352 KB
testcase_15 AC 512 ms
71,352 KB
testcase_16 AC 509 ms
71,224 KB
testcase_17 AC 531 ms
71,356 KB
testcase_18 AC 474 ms
71,224 KB
testcase_19 AC 493 ms
71,228 KB
testcase_20 AC 34 ms
32,528 KB
testcase_21 AC 33 ms
32,400 KB
testcase_22 AC 519 ms
71,224 KB
testcase_23 AC 1,082 ms
107,964 KB
testcase_24 AC 1,015 ms
107,960 KB
testcase_25 AC 1,078 ms
107,960 KB
testcase_26 AC 35 ms
32,400 KB
testcase_27 AC 34 ms
32,400 KB
testcase_28 AC 934 ms
107,960 KB
testcase_29 AC 972 ms
108,088 KB
testcase_30 AC 991 ms
107,832 KB
testcase_31 AC 895 ms
108,220 KB
testcase_32 AC 1,110 ms
108,092 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