結果

問題 No.800 四平方定理
ユーザー neko_the_shadowneko_the_shadow
提出日時 2019-03-19 10:53:10
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 69 ms / 2,000 ms
コード長 569 bytes
コンパイル時間 607 ms
コンパイル使用メモリ 73,252 KB
実行使用メモリ 34,548 KB
最終ジャッジ日時 2024-09-13 14:28:51
合計ジャッジ時間 2,525 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 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 3 ms
6,944 KB
testcase_07 AC 3 ms
6,940 KB
testcase_08 AC 3 ms
6,940 KB
testcase_09 AC 3 ms
6,940 KB
testcase_10 AC 22 ms
18,624 KB
testcase_11 AC 28 ms
20,792 KB
testcase_12 AC 27 ms
20,396 KB
testcase_13 AC 23 ms
19,484 KB
testcase_14 AC 25 ms
20,688 KB
testcase_15 AC 26 ms
20,608 KB
testcase_16 AC 26 ms
20,800 KB
testcase_17 AC 24 ms
20,736 KB
testcase_18 AC 29 ms
20,736 KB
testcase_19 AC 27 ms
20,832 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 28 ms
20,864 KB
testcase_23 AC 69 ms
34,464 KB
testcase_24 AC 61 ms
34,432 KB
testcase_25 AC 64 ms
34,456 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 57 ms
34,312 KB
testcase_29 AC 63 ms
34,432 KB
testcase_30 AC 66 ms
34,288 KB
testcase_31 AC 54 ms
32,248 KB
testcase_32 AC 62 ms
34,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>

int main(int argc, char const *argv[]) {
    // x^2 + y^2 = D+ w^2 - z^2
    int n, d;
    std::cin >> n >> d;

    std::vector<int> c(n * n * 2 + 1, 0);
    for (int x = 1; x <= n; x++) {
        for (int y = 1; y <= n; y++) {
            c[x * x + y * y]++;
        }
    }

    int ans = 0;
    for (int w = 1; w <= n; w++) {
        for (int z = 1; z <= n; z++) {
            int k = d + w * w - z * z;
            if (0 <= k && k < c.size()) ans += c[k];
        }
    }
    
    std::cout << ans << std::endl;
    return 0;
}
0