結果

問題 No.800 四平方定理
ユーザー null_mnnull_mn
提出日時 2019-03-20 20:40:54
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,488 ms / 2,000 ms
コード長 660 bytes
コンパイル時間 1,801 ms
コンパイル使用メモリ 172,940 KB
実行使用メモリ 83,788 KB
最終ジャッジ日時 2024-09-19 00:50:10
合計ジャッジ時間 21,351 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
5,248 KB
testcase_01 AC 19 ms
5,376 KB
testcase_02 AC 13 ms
5,376 KB
testcase_03 AC 15 ms
5,376 KB
testcase_04 AC 13 ms
5,376 KB
testcase_05 AC 15 ms
5,376 KB
testcase_06 AC 21 ms
5,452 KB
testcase_07 AC 15 ms
5,376 KB
testcase_08 AC 12 ms
5,452 KB
testcase_09 AC 19 ms
5,376 KB
testcase_10 AC 673 ms
43,212 KB
testcase_11 AC 754 ms
69,836 KB
testcase_12 AC 771 ms
69,448 KB
testcase_13 AC 621 ms
43,980 KB
testcase_14 AC 707 ms
69,712 KB
testcase_15 AC 772 ms
69,704 KB
testcase_16 AC 693 ms
69,968 KB
testcase_17 AC 693 ms
69,960 KB
testcase_18 AC 834 ms
69,836 KB
testcase_19 AC 844 ms
69,924 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 843 ms
69,964 KB
testcase_23 AC 1,488 ms
83,656 KB
testcase_24 AC 1,264 ms
83,660 KB
testcase_25 AC 1,461 ms
83,536 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 1,264 ms
83,532 KB
testcase_29 AC 1,382 ms
83,532 KB
testcase_30 AC 1,264 ms
83,536 KB
testcase_31 AC 1,195 ms
81,352 KB
testcase_32 AC 1,356 ms
83,788 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
    ll n, d;
    cin >> n >> d;
    //A(:=xx+yy),B(:=ww-zz+D)の取り得る値を列挙
    vector<ll> A, B;
    for (ll x = 1; x <= n; ++x) {
        for (ll y = 1; y <= n; ++y) {
            A.push_back(x * x + y * y);
        }
    }
    for (ll x = 1; x <= n; ++x) {
        for (ll y = 1; y <= n; ++y) {
            B.push_back(x * x - y * y + d);
        }
    }
    sort(B.begin(), B.end());
    int cnt = 0;
    for (auto a : A) {
        cnt += upper_bound(B.begin(), B.end(), a) - lower_bound(B.begin(), B.end(), a);
    }
    cout << cnt << endl;
    return 0;
}
0