結果

問題 No.800 四平方定理
ユーザー kakira9618kakira9618
提出日時 2019-03-17 21:26:45
言語 C++11
(gcc 13.3.0)
結果
TLE  
実行時間 -
コード長 1,227 bytes
コンパイル時間 3,676 ms
コンパイル使用メモリ 166,124 KB
実行使用メモリ 131,984 KB
最終ジャッジ日時 2024-07-07 20:23:01
合計ジャッジ時間 21,088 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 20 TLE * 1 -- * 9
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
#define all(x) (x).begin(),(x).end()
#define rep(i, n) for (int i = 0; i < (n); i++)
#define chmin(x, y) (x) = min((x), (y))
#define chmax(x, y) (x) = max((x), (y))
#define endl "\n"
typedef long long ll;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;

template <typename T> ostream &operator<<(ostream &os, const vector<T> &vec) {os << "["; for (const auto &v : vec) {os << v << ","; } os << "]"; return os;}
template <typename T, typename U> ostream &operator<<(ostream &os, const pair<T, U> &p) {os << "(" << p.first << ", " << p.second << ")"; return os;}

void solve() {
    int N, D;
    cin >> N >> D;

    unordered_map<ll,ll> A, B;
    for (int i = 1; i <= N; i++) {
        for (int j = 1; j <= N; j++) {
            A[i * i + j * j]++;
            B[i * i - j * j]++;
        }
    }

    ll ans = 0;
    for(auto b : B) {
        if (!A.count(b.first + D)) continue;
        ll c = A[b.first + D];
        ans += b.second * c;
    }

    cout << ans << endl;

}

int main() {
    #ifdef LOCAL_ENV
    cin.exceptions(ios::failbit);
    #endif
    cin.tie(0);
    ios::sync_with_stdio(false);
    cout.setf(ios::fixed);
    cout.precision(16);
    
    solve();
}
0