結果

問題 No.800 四平方定理
ユーザー mine691mine691
提出日時 2019-03-17 23:08:28
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 76 ms / 2,000 ms
コード長 502 bytes
コンパイル時間 1,310 ms
コンパイル使用メモリ 169,308 KB
実行使用メモリ 73,588 KB
最終ジャッジ日時 2024-07-08 01:57:44
合計ジャッジ時間 3,213 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 3 ms
6,940 KB
testcase_07 AC 3 ms
6,944 KB
testcase_08 AC 3 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 28 ms
37,860 KB
testcase_11 AC 29 ms
39,960 KB
testcase_12 AC 33 ms
41,864 KB
testcase_13 AC 26 ms
35,560 KB
testcase_14 AC 28 ms
37,936 KB
testcase_15 AC 32 ms
41,840 KB
testcase_16 AC 28 ms
38,528 KB
testcase_17 AC 29 ms
38,492 KB
testcase_18 AC 34 ms
45,976 KB
testcase_19 AC 36 ms
46,164 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 34 ms
46,180 KB
testcase_23 AC 76 ms
73,588 KB
testcase_24 AC 64 ms
65,804 KB
testcase_25 AC 75 ms
73,308 KB
testcase_26 AC 1 ms
5,376 KB
testcase_27 AC 5 ms
10,972 KB
testcase_28 AC 71 ms
65,484 KB
testcase_29 AC 74 ms
69,500 KB
testcase_30 AC 71 ms
65,408 KB
testcase_31 AC 63 ms
61,056 KB
testcase_32 AC 68 ms
66,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ll n, d, ans;

int main()
{
    cin >> n >> d;
    vector<ll> X(2 * n * n + d);
    for (int i = 1; i <= n; i++)
    {
        for (int j = 1; j <= n; j++)
        {
            X[i * i + j * j]++;
        }
    }
    for (int i = 1; i <= n; i++)
    {
        for (int j = 1; j <= n; j++)
        {
            int x = i * i - j * j + d;
            if (x > 0)
                ans += X[x];
        }
    }
    cout << ans << endl;
}
0