結果

問題 No.800 四平方定理
ユーザー sten_sansten_san
提出日時 2021-02-13 12:19:25
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 65 ms / 2,000 ms
コード長 879 bytes
コンパイル時間 2,239 ms
コンパイル使用メモリ 199,908 KB
実行使用メモリ 23,040 KB
最終ジャッジ日時 2024-07-20 15:15:22
合計ジャッジ時間 4,168 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 21 ms
13,056 KB
testcase_11 AC 19 ms
13,056 KB
testcase_12 AC 22 ms
14,208 KB
testcase_13 AC 15 ms
11,648 KB
testcase_14 AC 17 ms
12,160 KB
testcase_15 AC 19 ms
14,080 KB
testcase_16 AC 17 ms
12,288 KB
testcase_17 AC 16 ms
12,416 KB
testcase_18 AC 23 ms
16,128 KB
testcase_19 AC 21 ms
16,000 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 23 ms
16,128 KB
testcase_23 AC 51 ms
23,040 KB
testcase_24 AC 49 ms
18,944 KB
testcase_25 AC 65 ms
22,912 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 54 ms
19,072 KB
testcase_29 AC 57 ms
20,992 KB
testcase_30 AC 50 ms
19,072 KB
testcase_31 AC 48 ms
17,920 KB
testcase_32 AC 57 ms
19,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

struct uns_t {} uns;
template <typename Element, typename Head, typename ...Args>
auto vec(Element init, Head arg, Args ...args) {
    if constexpr (sizeof...(Args) == 0) return std::vector(arg, init);
    else return std::vector(arg, vec(init, args...));
}
template <typename Element, typename Head, typename ...Args>
auto vec(uns_t, Head arg, Args ...args) {
    return vec(Element(), arg, args...);
}

array<int, 10000000> cnt;

int main() {
    int n, d; cin >> n >> d;

    for (int i = 1; i <= n; ++i) {
        for (int j = 1; j <= n; ++j) {
            if (i * i - j * j + d < 0) continue;
            ++cnt[i * i - j * j + d];
        }
    }

    int64_t ans = 0;
    for (int i = 1; i <= n; ++i) {
        for (int j = 1; j <= n; ++j) {
            ans += cnt[i * i + j * j];
        }
    }

    cout << ans << endl;
}

0