結果

問題 No.800 四平方定理
ユーザー yumarimoyumarimo
提出日時 2019-04-07 01:37:38
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,557 ms / 2,000 ms
コード長 1,240 bytes
コンパイル時間 2,211 ms
コンパイル使用メモリ 173,852 KB
実行使用メモリ 37,660 KB
最終ジャッジ日時 2024-06-25 12:30:42
合計ジャッジ時間 22,521 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
6,816 KB
testcase_01 AC 17 ms
6,944 KB
testcase_02 AC 12 ms
6,940 KB
testcase_03 AC 13 ms
6,944 KB
testcase_04 AC 12 ms
6,940 KB
testcase_05 AC 14 ms
6,940 KB
testcase_06 AC 19 ms
6,940 KB
testcase_07 AC 18 ms
6,940 KB
testcase_08 AC 12 ms
6,944 KB
testcase_09 AC 17 ms
6,944 KB
testcase_10 AC 672 ms
20,752 KB
testcase_11 AC 701 ms
36,656 KB
testcase_12 AC 749 ms
36,236 KB
testcase_13 AC 573 ms
19,972 KB
testcase_14 AC 624 ms
37,308 KB
testcase_15 AC 775 ms
36,532 KB
testcase_16 AC 642 ms
36,816 KB
testcase_17 AC 628 ms
36,204 KB
testcase_18 AC 835 ms
36,648 KB
testcase_19 AC 854 ms
36,248 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 854 ms
36,312 KB
testcase_23 AC 1,557 ms
37,080 KB
testcase_24 AC 1,215 ms
36,352 KB
testcase_25 AC 1,524 ms
37,660 KB
testcase_26 AC 2 ms
6,944 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 1,199 ms
36,524 KB
testcase_29 AC 1,400 ms
37,108 KB
testcase_30 AC 1,209 ms
36,136 KB
testcase_31 AC 1,095 ms
37,108 KB
testcase_32 AC 1,265 ms
37,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

#define llong long long int
#define ldouble long double
#define rep(i, n) for (int i = 0; i < n; ++i)
#define REP(i, k, n) for (int i = k; i < n; ++i)
#define fore(i,a) for (auto &i : a)
#define repr(i, n) for (int i = n; i >= 0; --i)
#define stl_rep(itr, x) for (auto itr = x.begin(); itr != x.end(); ++itr)
#define all(x) x.begin(), x.end()
#define allr(x) x.rbegin(), x.rend()

const static int mod = 1000000000 + 7;
const static int inf = INT_MAX / 2;
const static llong INF = LLONG_MAX / 2;
const static double eps = 1e-10;
const static int dx[] = {1, 0, -1, 0};
const static int dy[] = {0, 1, 0, -1};

signed main (int argc, char *argv[]) {
    cin.tie(0);
    ios::sync_with_stdio(false);

    llong n, d;
    cin >> n >> d;

    vector<llong> XY;
    for (llong x = 1; x <= n; ++x) {
        for (llong y = 1; y <= n; ++y) {
            XY.push_back(x * x + y * y);
        }
    }

    sort(all(XY));

    llong res = 0;
    for (llong z = 1; z <= n; ++z) {
        for (llong w = 1; w <= n; ++w) {
            llong target = w * w - z * z + d;
            res += upper_bound(all(XY), target) - lower_bound(all(XY), target);
        }
    }

    cout << res << endl;

    return 0;
}
0