結果

問題 No.800 四平方定理
ユーザー shi-moshi-mo
提出日時 2020-09-29 23:27:50
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 111 ms / 2,000 ms
コード長 592 bytes
コンパイル時間 1,848 ms
コンパイル使用メモリ 137,940 KB
実行使用メモリ 67,420 KB
最終ジャッジ日時 2024-06-22 09:11:55
合計ジャッジ時間 4,442 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 3 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 46 ms
34,944 KB
testcase_11 AC 49 ms
38,232 KB
testcase_12 AC 54 ms
37,800 KB
testcase_13 AC 42 ms
35,964 KB
testcase_14 AC 46 ms
38,768 KB
testcase_15 AC 54 ms
37,816 KB
testcase_16 AC 50 ms
39,380 KB
testcase_17 AC 49 ms
38,676 KB
testcase_18 AC 58 ms
40,816 KB
testcase_19 AC 60 ms
38,832 KB
testcase_20 AC 1 ms
6,940 KB
testcase_21 AC 1 ms
6,944 KB
testcase_22 AC 63 ms
38,972 KB
testcase_23 AC 111 ms
65,948 KB
testcase_24 AC 96 ms
65,740 KB
testcase_25 AC 109 ms
66,612 KB
testcase_26 AC 1 ms
6,940 KB
testcase_27 AC 1 ms
6,940 KB
testcase_28 AC 98 ms
67,420 KB
testcase_29 AC 107 ms
67,096 KB
testcase_30 AC 98 ms
66,556 KB
testcase_31 AC 86 ms
61,872 KB
testcase_32 AC 101 ms
65,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.stdio;
import std.conv;
import std.array;

void main() {
    uint n, d;
    readf("%s %s\n", &n, &d);

    immutable uint m = 2*n*n;
    uint[] cxy = new uint[](m+1);
    uint[] cwz = new uint[](m+1);

    foreach (i; 1..(n+1)) {
        uint i2 = i*i;
        foreach (j; 1..(n+1)) {
            uint j2 = j*j;
            cxy[i2 + j2]++;

            uint wz = i2 - j2 + d;
            if (0 < wz && wz <= m) {
                cwz[wz]++;
            }
        }
    }

    uint sum = 0;
    foreach (i; 2..(m+1)) {
        sum += cxy[i] * cwz[i];
    }
    writef("%d\n", sum);
}
0