結果

問題 No.800 四平方定理
ユーザー mine691mine691
提出日時 2019-03-17 23:18:48
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 76 ms / 2,000 ms
コード長 515 bytes
コンパイル時間 473 ms
コンパイル使用メモリ 69,128 KB
実行使用メモリ 73,520 KB
最終ジャッジ日時 2024-07-08 02:28:40
合計ジャッジ時間 2,279 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 3 ms
6,940 KB
testcase_02 AC 3 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 3 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 3 ms
6,944 KB
testcase_07 AC 3 ms
6,940 KB
testcase_08 AC 4 ms
6,944 KB
testcase_09 AC 3 ms
6,944 KB
testcase_10 AC 30 ms
37,800 KB
testcase_11 AC 31 ms
39,896 KB
testcase_12 AC 35 ms
41,808 KB
testcase_13 AC 27 ms
35,576 KB
testcase_14 AC 28 ms
38,016 KB
testcase_15 AC 32 ms
41,804 KB
testcase_16 AC 31 ms
38,528 KB
testcase_17 AC 31 ms
38,368 KB
testcase_18 AC 37 ms
46,080 KB
testcase_19 AC 41 ms
46,072 KB
testcase_20 AC 2 ms
6,944 KB
testcase_21 AC 2 ms
6,948 KB
testcase_22 AC 37 ms
46,208 KB
testcase_23 AC 76 ms
73,520 KB
testcase_24 AC 70 ms
65,776 KB
testcase_25 AC 74 ms
73,520 KB
testcase_26 AC 2 ms
6,944 KB
testcase_27 AC 4 ms
11,088 KB
testcase_28 AC 68 ms
65,552 KB
testcase_29 AC 67 ms
69,504 KB
testcase_30 AC 70 ms
65,456 KB
testcase_31 AC 61 ms
61,120 KB
testcase_32 AC 70 ms
66,588 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
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