結果

問題 No.800 四平方定理
ユーザー revkirurevkiru
提出日時 2024-10-04 16:02:05
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 1,075 bytes
コンパイル時間 4,519 ms
コンパイル使用メモリ 282,620 KB
実行使用メモリ 69,500 KB
最終ジャッジ日時 2024-10-04 16:02:29
合計ジャッジ時間 19,153 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
35,052 KB
testcase_01 AC 21 ms
35,696 KB
testcase_02 AC 16 ms
35,060 KB
testcase_03 AC 19 ms
34,956 KB
testcase_04 AC 17 ms
34,956 KB
testcase_05 AC 18 ms
34,988 KB
testcase_06 AC 23 ms
35,696 KB
testcase_07 AC 19 ms
35,696 KB
testcase_08 AC 18 ms
35,696 KB
testcase_09 AC 20 ms
35,572 KB
testcase_10 AC 336 ms
51,716 KB
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 AC 11 ms
34,668 KB
testcase_21 AC 11 ms
34,708 KB
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 AC 11 ms
34,852 KB
testcase_27 AC 10 ms
34,712 KB
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using i64 = long long;

constexpr int N = 1e6 + 7;

int n, k;
i64 cnt[N << 2];
std::vector<i64> vec;

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

    // freopen("alive.in", "r", stdin);
    // freopen("alive.out", "w", stdout);

    std::cin >> n >> k;
    memset(cnt, -1, sizeof(cnt));
    for (int x = 1; x <= n; x++) {
        for (int y = 1; y <= n; y++) {
            i64 z = 1ll * x * x - 1ll * y * y + k;
            vec.push_back(z);
        }
    }
    std::sort(vec.begin(), vec.end());

    i64 ans = 0;
    for (int x = 1; x <= n; x++) {
        for (int y = 1; y <= n; y++) {
            i64 z = x * x + y * y;
            if (cnt[z] != -1)
                ans += cnt[z];
            else {
                auto it0 = std::lower_bound(vec.begin(), vec.end(), z);
                auto it1 = std::upper_bound(vec.begin(), vec.end(), z);
                i64 d = it1 - it0;
                ans += d;
                cnt[z] = d;
            }
        }
    }

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