結果

問題 No.800 四平方定理
ユーザー kakira9618kakira9618
提出日時 2019-03-17 21:26:45
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 1,227 bytes
コンパイル時間 1,842 ms
コンパイル使用メモリ 151,568 KB
実行使用メモリ 129,432 KB
最終ジャッジ日時 2023-09-22 03:36:52
合計ジャッジ時間 31,781 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
4,868 KB
testcase_01 AC 18 ms
5,900 KB
testcase_02 AC 13 ms
5,196 KB
testcase_03 AC 14 ms
5,080 KB
testcase_04 AC 12 ms
5,088 KB
testcase_05 AC 14 ms
5,100 KB
testcase_06 AC 23 ms
6,676 KB
testcase_07 AC 16 ms
5,544 KB
testcase_08 AC 24 ms
6,736 KB
testcase_09 AC 22 ms
6,584 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 2 ms
4,376 KB
testcase_21 AC 1 ms
4,380 KB
testcase_22 TLE -
testcase_23 TLE -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
権限があれば一括ダウンロードができます

ソースコード

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