結果

問題 No.800 四平方定理
ユーザー revkirurevkiru
提出日時 2024-10-04 16:02:29
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 723 ms / 2,000 ms
コード長 1,075 bytes
コンパイル時間 3,882 ms
コンパイル使用メモリ 281,544 KB
実行使用メモリ 100,240 KB
最終ジャッジ日時 2024-10-04 16:02:48
合計ジャッジ時間 16,386 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 22 ms
66,316 KB
testcase_01 AC 27 ms
66,820 KB
testcase_02 AC 24 ms
66,212 KB
testcase_03 AC 25 ms
66,308 KB
testcase_04 AC 22 ms
66,308 KB
testcase_05 AC 24 ms
66,248 KB
testcase_06 AC 27 ms
66,952 KB
testcase_07 AC 24 ms
66,820 KB
testcase_08 AC 27 ms
66,824 KB
testcase_09 AC 26 ms
66,820 KB
testcase_10 AC 350 ms
82,364 KB
testcase_11 AC 370 ms
98,692 KB
testcase_12 AC 368 ms
100,052 KB
testcase_13 AC 327 ms
83,744 KB
testcase_14 AC 347 ms
99,540 KB
testcase_15 AC 378 ms
99,656 KB
testcase_16 AC 367 ms
99,076 KB
testcase_17 AC 355 ms
99,104 KB
testcase_18 AC 418 ms
100,056 KB
testcase_19 AC 390 ms
98,684 KB
testcase_20 AC 18 ms
65,960 KB
testcase_21 AC 18 ms
65,864 KB
testcase_22 AC 417 ms
99,636 KB
testcase_23 AC 723 ms
100,240 KB
testcase_24 AC 656 ms
99,812 KB
testcase_25 AC 702 ms
98,900 KB
testcase_26 AC 16 ms
66,112 KB
testcase_27 AC 16 ms
65,836 KB
testcase_28 AC 628 ms
98,924 KB
testcase_29 AC 678 ms
99,612 KB
testcase_30 AC 667 ms
99,040 KB
testcase_31 AC 591 ms
99,648 KB
testcase_32 AC 658 ms
98,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using i64 = long long;

constexpr int N = 1e6 + 7;

int n, k;
i64 cnt[N << 3];
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