結果

問題 No.800 四平方定理
ユーザー MisterMister
提出日時 2020-08-01 22:44:11
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 663 bytes
コンパイル時間 555 ms
コンパイル使用メモリ 72,576 KB
実行使用メモリ 65,920 KB
最終ジャッジ日時 2024-07-08 10:04:03
合計ジャッジ時間 4,072 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
65,792 KB
testcase_01 AC 46 ms
65,792 KB
testcase_02 AC 45 ms
65,664 KB
testcase_03 AC 45 ms
65,792 KB
testcase_04 AC 46 ms
65,792 KB
testcase_05 AC 47 ms
65,664 KB
testcase_06 AC 46 ms
65,792 KB
testcase_07 AC 46 ms
65,792 KB
testcase_08 AC 48 ms
65,792 KB
testcase_09 AC 46 ms
65,792 KB
testcase_10 AC 77 ms
65,920 KB
testcase_11 AC 81 ms
65,792 KB
testcase_12 AC 82 ms
65,792 KB
testcase_13 AC 77 ms
65,792 KB
testcase_14 AC 78 ms
65,792 KB
testcase_15 AC 83 ms
65,792 KB
testcase_16 AC 81 ms
65,920 KB
testcase_17 AC 81 ms
65,920 KB
testcase_18 AC 89 ms
65,792 KB
testcase_19 AC 86 ms
65,792 KB
testcase_20 AC 46 ms
65,792 KB
testcase_21 AC 46 ms
65,792 KB
testcase_22 AC 87 ms
65,664 KB
testcase_23 AC 133 ms
65,792 KB
testcase_24 AC 121 ms
65,792 KB
testcase_25 AC 128 ms
65,792 KB
testcase_26 AC 46 ms
65,792 KB
testcase_27 AC 45 ms
65,792 KB
testcase_28 AC 123 ms
65,920 KB
testcase_29 AC 129 ms
65,792 KB
testcase_30 AC 121 ms
65,664 KB
testcase_31 AC 115 ms
65,664 KB
testcase_32 AC 127 ms
65,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>

using lint = long long;
constexpr int N = 2000 * 2000 * 2;

void solve() {
    int n, d;
    std::cin >> n >> d;

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

    lint ans = 0;
    for (int z = 1; z <= n; ++z) {
        for (int w = 1; w <= n; ++w) {
            lint rhs = w * w - z * z + d;
            if (0 <= rhs && rhs <= N) ans += cnt[rhs];
        }
    }

    std::cout << ans << "\n";
}

int main() {
    std::cin.tie(nullptr);
    std::ios::sync_with_stdio(false);

    solve();

    return 0;
}
0