結果

問題 No.800 四平方定理
ユーザー Im_GimletIm_Gimlet
提出日時 2020-08-31 23:58:09
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 106 ms / 2,000 ms
コード長 961 bytes
コンパイル時間 1,584 ms
コンパイル使用メモリ 168,884 KB
実行使用メモリ 81,408 KB
最終ジャッジ日時 2024-11-17 02:57:51
合計ジャッジ時間 4,708 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
81,280 KB
testcase_01 AC 34 ms
81,280 KB
testcase_02 AC 32 ms
81,288 KB
testcase_03 AC 33 ms
81,280 KB
testcase_04 AC 33 ms
81,280 KB
testcase_05 AC 33 ms
81,408 KB
testcase_06 AC 33 ms
81,408 KB
testcase_07 AC 32 ms
81,280 KB
testcase_08 AC 34 ms
81,284 KB
testcase_09 AC 33 ms
81,280 KB
testcase_10 AC 52 ms
81,276 KB
testcase_11 AC 56 ms
81,364 KB
testcase_12 AC 57 ms
81,408 KB
testcase_13 AC 51 ms
81,280 KB
testcase_14 AC 56 ms
81,348 KB
testcase_15 AC 59 ms
81,280 KB
testcase_16 AC 55 ms
81,300 KB
testcase_17 AC 56 ms
81,408 KB
testcase_18 AC 60 ms
81,280 KB
testcase_19 AC 59 ms
81,408 KB
testcase_20 AC 34 ms
81,328 KB
testcase_21 AC 32 ms
81,280 KB
testcase_22 AC 60 ms
81,280 KB
testcase_23 AC 105 ms
81,280 KB
testcase_24 AC 102 ms
81,408 KB
testcase_25 AC 106 ms
81,280 KB
testcase_26 AC 34 ms
81,344 KB
testcase_27 AC 34 ms
81,396 KB
testcase_28 AC 99 ms
81,408 KB
testcase_29 AC 102 ms
81,280 KB
testcase_30 AC 101 ms
81,404 KB
testcase_31 AC 96 ms
81,280 KB
testcase_32 AC 102 ms
81,348 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