結果

問題 No.800 四平方定理
ユーザー Yoichiro NishimuraYoichiro Nishimura
提出日時 2020-02-06 10:42:12
言語 PHP
(8.3.4)
結果
AC  
実行時間 1,468 ms / 2,000 ms
コード長 477 bytes
コンパイル時間 1,485 ms
コンパイル使用メモリ 32,192 KB
実行使用メモリ 108,024 KB
最終ジャッジ日時 2023-10-25 10:04:46
合計ジャッジ時間 22,093 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
32,464 KB
testcase_01 AC 51 ms
34,420 KB
testcase_02 AC 49 ms
34,424 KB
testcase_03 AC 49 ms
34,420 KB
testcase_04 AC 50 ms
34,420 KB
testcase_05 AC 50 ms
34,420 KB
testcase_06 AC 51 ms
34,420 KB
testcase_07 AC 50 ms
34,420 KB
testcase_08 AC 51 ms
34,420 KB
testcase_09 AC 51 ms
34,420 KB
testcase_10 AC 644 ms
71,284 KB
testcase_11 AC 666 ms
71,284 KB
testcase_12 AC 638 ms
71,284 KB
testcase_13 AC 675 ms
71,284 KB
testcase_14 AC 649 ms
71,284 KB
testcase_15 AC 700 ms
71,284 KB
testcase_16 AC 718 ms
71,284 KB
testcase_17 AC 727 ms
71,284 KB
testcase_18 AC 653 ms
71,284 KB
testcase_19 AC 680 ms
71,284 KB
testcase_20 AC 44 ms
32,464 KB
testcase_21 AC 46 ms
32,464 KB
testcase_22 AC 752 ms
71,284 KB
testcase_23 AC 1,468 ms
108,024 KB
testcase_24 AC 1,373 ms
108,024 KB
testcase_25 AC 1,455 ms
108,024 KB
testcase_26 AC 45 ms
32,464 KB
testcase_27 AC 44 ms
32,464 KB
testcase_28 AC 1,304 ms
108,024 KB
testcase_29 AC 1,346 ms
108,024 KB
testcase_30 AC 1,378 ms
108,024 KB
testcase_31 AC 1,231 ms
108,024 KB
testcase_32 AC 1,463 ms
108,024 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 - $d;
    for($w = $n; $w > 0; --$w){
        $p = $w*$w - $Z;
        if(isset($map[$p])){
            $count+=$map[$p];
        }
    }
}
echo $count;
0