結果

問題 No.800 四平方定理
ユーザー Im_GimletIm_Gimlet
提出日時 2020-08-31 23:58:09
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 149 ms / 2,000 ms
コード長 961 bytes
コンパイル時間 1,552 ms
コンパイル使用メモリ 167,492 KB
実行使用メモリ 81,472 KB
最終ジャッジ日時 2024-04-28 11:40:41
合計ジャッジ時間 5,868 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
81,280 KB
testcase_01 AC 70 ms
81,404 KB
testcase_02 AC 70 ms
81,344 KB
testcase_03 AC 69 ms
81,296 KB
testcase_04 AC 69 ms
81,316 KB
testcase_05 AC 69 ms
81,388 KB
testcase_06 AC 70 ms
81,368 KB
testcase_07 AC 70 ms
81,364 KB
testcase_08 AC 69 ms
81,324 KB
testcase_09 AC 69 ms
81,364 KB
testcase_10 AC 90 ms
81,284 KB
testcase_11 AC 93 ms
81,380 KB
testcase_12 AC 93 ms
81,300 KB
testcase_13 AC 90 ms
81,472 KB
testcase_14 AC 91 ms
81,308 KB
testcase_15 AC 95 ms
81,292 KB
testcase_16 AC 94 ms
81,296 KB
testcase_17 AC 92 ms
81,284 KB
testcase_18 AC 97 ms
81,384 KB
testcase_19 AC 97 ms
81,304 KB
testcase_20 AC 68 ms
81,280 KB
testcase_21 AC 69 ms
81,384 KB
testcase_22 AC 97 ms
81,316 KB
testcase_23 AC 149 ms
81,284 KB
testcase_24 AC 142 ms
81,456 KB
testcase_25 AC 149 ms
81,296 KB
testcase_26 AC 69 ms
81,300 KB
testcase_27 AC 70 ms
81,280 KB
testcase_28 AC 142 ms
81,344 KB
testcase_29 AC 145 ms
81,356 KB
testcase_30 AC 142 ms
81,324 KB
testcase_31 AC 135 ms
81,424 KB
testcase_32 AC 143 ms
81,436 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return true; } return false; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return true; } return false; }
using ll = long long;
using P = pair<ll, ll>;
const long double PI = acos(-1.0L);
ll GCD(ll a, ll b) { return b?GCD(b, a%b):a; }
ll LCM(ll a, ll b) { return a/GCD(a, b)*b; }

ll n, d;

int main() {
    cin >> n >> d;
    int dmax = 10000100;
    vector<int> xy(dmax, 0);
    for(int x = 1; x <= n; ++x) {
        for(int y = 1; y <= n; ++y) {
            ll cxy = x*x+y*y;
            xy[cxy]++;
        }
    }

    vector<int> zw(dmax, 0);
    for(int z = 1; z <= n; ++z) {
        for(int w = 1; w <= n; ++w) {
            ll czw = w*w-z*z+d;
            if(czw >= 0) zw[czw]++;
        }
    }

    int cnt = 0;
    for(int i = 0; i <= dmax; ++i) {
        cnt += (xy[i]*zw[i]);
    }
    cout << cnt << endl;
}
0