結果

問題 No.800 四平方定理
ユーザー drken1215drken1215
提出日時 2019-03-17 22:09:59
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 99 ms / 2,000 ms
コード長 3,730 bytes
コンパイル時間 1,044 ms
コンパイル使用メモリ 104,688 KB
実行使用メモリ 83,504 KB
最終ジャッジ日時 2023-09-22 06:55:18
合計ジャッジ時間 4,336 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
83,432 KB
testcase_01 AC 33 ms
83,196 KB
testcase_02 AC 33 ms
83,200 KB
testcase_03 AC 33 ms
83,200 KB
testcase_04 AC 33 ms
83,192 KB
testcase_05 AC 33 ms
83,352 KB
testcase_06 AC 33 ms
83,196 KB
testcase_07 AC 34 ms
83,196 KB
testcase_08 AC 34 ms
83,212 KB
testcase_09 AC 33 ms
83,216 KB
testcase_10 AC 52 ms
83,424 KB
testcase_11 AC 57 ms
83,332 KB
testcase_12 AC 56 ms
83,504 KB
testcase_13 AC 52 ms
83,276 KB
testcase_14 AC 55 ms
83,424 KB
testcase_15 AC 57 ms
83,240 KB
testcase_16 AC 55 ms
83,292 KB
testcase_17 AC 55 ms
83,208 KB
testcase_18 AC 59 ms
83,228 KB
testcase_19 AC 58 ms
83,352 KB
testcase_20 AC 33 ms
83,264 KB
testcase_21 AC 33 ms
83,188 KB
testcase_22 AC 57 ms
83,196 KB
testcase_23 AC 98 ms
83,260 KB
testcase_24 AC 91 ms
83,464 KB
testcase_25 AC 99 ms
83,276 KB
testcase_26 AC 32 ms
83,292 KB
testcase_27 AC 33 ms
83,280 KB
testcase_28 AC 91 ms
83,428 KB
testcase_29 AC 99 ms
83,204 KB
testcase_30 AC 91 ms
83,392 KB
testcase_31 AC 87 ms
83,256 KB
testcase_32 AC 98 ms
83,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <sstream>
#include <cstdio>
#include <cstdlib>
#include <cmath>
#include <ctime>
#include <cstring>
#include <string>
#include <vector>
#include <stack>
#include <queue>
#include <deque>
#include <map>
#include <set>
#include <bitset>
#include <numeric>
#include <utility>
#include <iomanip>
#include <algorithm>
#include <functional>
#include <unordered_map>
using namespace std;

#define REP(i, s) for (int i = 0; i < s; ++i)
#define ALL(v) (v.begin(), v.end())
#define COUT(x) cout << #x << " = " << (x) << " (L" << __LINE__ << ")" << endl
#define EACH(i, s) for (__typeof__((s).begin()) i = (s).begin(); i != (s).end(); ++i)

template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }
template<class T1, class T2> ostream& operator << (ostream &s, pair<T1,T2> P)
{ return s << '<' << P.first << ", " << P.second << '>'; }
template<class T> ostream& operator << (ostream &s, vector<T> P)
{ for (int i = 0; i < P.size(); ++i) { if (i > 0) { s << " "; } s << P[i]; } return s; }
template<class T> ostream& operator << (ostream &s, vector<vector<T> > P)
{ for (int i = 0; i < P.size(); ++i) { s << endl << P[i]; } return s << endl; }
template<class T> ostream& operator << (ostream &s, set<T> P)
{ EACH(it, P) { s << "<" << *it << "> "; } return s << endl; }
template<class T1, class T2> ostream& operator << (ostream &s, map<T1,T2> P)
{ EACH(it, P) { s << "<" << it->first << "->" << it->second << "> "; } return s << endl; }


vector<long long> calc_divisor(long long n) {
    vector<long long> res;
    for (long long i = 1LL; i*i <= n; ++i) {
        if (n % i == 0) {
            res.push_back(i);
            long long j = n / i;
            if (j != i) res.push_back(j);
        }
    }
    sort(res.begin(), res.end());
    return res;
}
long long num[10000000];


int N;
int D;


int le[10000000];
int ri[10000000];

long long solve() {
    memset(le, 0, sizeof(le));
    memset(ri, 0, sizeof(ri));
    for (int x = 1; x <= N; ++x) {
        for (int y = 1; y <= N; ++y) {
            le[x*x + y*y]++;
        }
    }
    for (int z = 1; z <= N; ++z) {
        for (int w = 1; w <= N; ++w) {
            int val = D + w*w - z*z;
            if (val < 0) continue;
            ri[val]++;
        }
    }
    long long res = 0;
    for (int v = 1; v < 10000000; ++v) {
        res += (long long)(le[v]) * ri[v];
    }
    return res;
}

int main() {
    while (cin >> N >> D) {
        cout << solve() << endl;
        /*
        memset(num, -1, sizeof(num));
        long long res = 0;
        for (long long x = 1; x <= N; ++x) {
            for (long long y = 1; y <= N; ++y) {
                long long diff = abs(D - x*x - y*y);
                if (diff == 0) res += N;
                else if (num[diff] != -1) res += num[diff];
                else {
                    int tmp = 0;
                    auto div = calc_divisor(diff);
                    for (auto d : div) {
                        long long p = diff/d, q = d;
                        if (p <= q) break;
                        if ((p + q) % 2 == 0) {
                            long long z = (p + q) / 2, w = (p - q) / 2;
                            if (z >= 1 && z <= N && w >= 1 && q <= N) {
                                ++tmp;
                                //cout << x << ", " << y << ": " << diff << "; " << p << ", " << q << endl;
                            }
                        }
                    }
                    res += tmp;
                    num[diff] = tmp;
                }
            }
        }
        cout << res << endl;
         */
    }
}











0