結果

問題 No.800 四平方定理
ユーザー mikianaaamikianaaa
提出日時 2020-10-15 21:24:41
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 163 ms / 2,000 ms
コード長 891 bytes
コンパイル時間 1,714 ms
コンパイル使用メモリ 168,268 KB
実行使用メモリ 64,512 KB
最終ジャッジ日時 2024-07-20 19:57:00
合計ジャッジ時間 5,083 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 4 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 68 ms
33,536 KB
testcase_11 AC 74 ms
37,248 KB
testcase_12 AC 78 ms
36,736 KB
testcase_13 AC 68 ms
34,944 KB
testcase_14 AC 72 ms
37,248 KB
testcase_15 AC 77 ms
36,992 KB
testcase_16 AC 73 ms
37,632 KB
testcase_17 AC 73 ms
37,632 KB
testcase_18 AC 86 ms
37,632 KB
testcase_19 AC 84 ms
37,504 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 86 ms
37,632 KB
testcase_23 AC 161 ms
64,512 KB
testcase_24 AC 144 ms
64,384 KB
testcase_25 AC 163 ms
64,256 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 147 ms
64,256 KB
testcase_29 AC 154 ms
64,384 KB
testcase_30 AC 145 ms
64,128 KB
testcase_31 AC 133 ms
60,032 KB
testcase_32 AC 147 ms
64,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <bits/stdc++.h>
using namespace std;
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define all(x) (x).begin(), (x).end()
#define ll long long
#define ld long double
#define INF 1000000000000000000
typedef pair<ll, ll> pll;
typedef pair<int, int> pint;

ll cnt[100000000] = {0};

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

    ll N, D;
    cin >> N >> D;
    ll ans = 0;
    map<ll, ll> ma;

    for (int x = 1; x <= N; x++) {
        for (int y = 1; y <= N; y++) {
            ll tmp = x * x + y * y;
            if (tmp > 100000000)
                continue;
            cnt[tmp]++;
        }
    }

    for (int w = 1; w <= N; w++) {
        for (int z = 1; z <= N; z++) {
            int tmp = w * w - z * z + D;
            if (tmp >= 0 && cnt[tmp] > 0)
                ans += cnt[tmp];
        }
    }

    cout << ans << endl;
}
0